diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-04-21 08:57:30 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-04-21 08:57:30 +0000 |
commit | 0fa03311f520ae07591fac64e637ff0804408ab1 (patch) | |
tree | e6df3b6071ce3b9eab7023eaa8fbbbd5ce15c051 /gcc/ada/alloc.ads | |
parent | c098acfba8f2f80fa724021975c2051801d97f1c (diff) | |
download | gcc-0fa03311f520ae07591fac64e637ff0804408ab1.tar.gz |
2016-04-21 Eric Botcazou <ebotcazou@adacore.com>
* gnatlink.adb (Gnatlink): Robustify detection of Windows target.
* alloc.ads: Minor comment fixes.
* einfo.ads: Fix typo.
2016-04-21 Arnaud Charlet <charlet@adacore.com>
* exp_aggr.adb (Component_Not_OK_For_Backend): Redo previous
changes to handle all cases of components depending on the
discriminant, not just string literals.
2016-04-21 Ed Schonberg <schonberg@adacore.com>
* sem_ch3.adb (Analyze_Subtype_Declaration): If the subtype
declaration is the generated declaration for a generic actual,
inherit predicates from the actual if it is a predicated subtype.
2016-04-21 Ed Schonberg <schonberg@adacore.com>
* exp_ch6.adb (Rewrite_Function_Call_For_C): If the function is
inherited and its result is controlling, introduce a conversion
on the actual for the corresponding procedure call, to avoid
spurious type errors.
2016-04-21 Jerome Lambourg <lambourg@adacore.com>
* krunch.adb (Krunch): Fix krunching of i-vxworks.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@235317 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/alloc.ads')
-rw-r--r-- | gcc/ada/alloc.ads | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ada/alloc.ads b/gcc/ada/alloc.ads index e175f8b433d..4cdb1d23d26 100644 --- a/gcc/ada/alloc.ads +++ b/gcc/ada/alloc.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2014, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2016, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -30,14 +30,14 @@ ------------------------------------------------------------------------------ -- This package contains definitions for initial sizes and growth increments --- for the various dynamic arrays used for principle compiler data strcutures. +-- for the various dynamic arrays used for the main compiler data structures. -- The indicated initial size is allocated for the start of each file, and -- the increment factor is a percentage used to increase the table size when -- it needs expanding (e.g. a value of 100 = 100% increase = double) --- Note: the initial values here are multiplied by Table_Factor, as set --- by the -gnatTnn switch. This variable is defined in Opt, as is the --- default value for the table factor. +-- Note: the initial values here are multiplied by Table_Factor as set by the +-- -gnatTnn switch. This variable is defined in Opt, as is the default value +-- for the table factor. package Alloc is |