diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-05 16:21:03 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-05 16:21:03 +0200 |
commit | 822868aa564816380d7928a6ead984524abc8259 (patch) | |
tree | eba2b26100e99f621767619903ed5d74dd4acaa2 /gcc/ada/gnat1drv.adb | |
parent | 44a10091cf20b5f4580c4e7bc33e8162acce97dc (diff) | |
download | gcc-822868aa564816380d7928a6ead984524abc8259.tar.gz |
[multiple changes]
2011-08-05 Vincent Celier <celier@adacore.com>
* gnatcmd.adb (Get_Closure): Do not crash when it is not possible to
delete or close the file when the call to gnatmake was successful.
2011-08-05 Yannick Moy <moy@adacore.com>
* gnat1drv.adb (Adjust_Global_Switches): in ALFA mode, set
Global_Discard_Names.
2011-08-05 Ed Schonberg <schonberg@adacore.com>
* sinfo.ads: comments on use of entity field for aspect specifications.
2011-08-05 Ed Schonberg <schonberg@adacore.com>
* sem_ch12.adb (Reset_Entity): If the entity field of the associated
node is not itself an entity but a selected component, it is a
rewritten parameterless call to an en enclosing synchronized operation,
and this expansion will be performed again in the instance, so there is
no global information to preserve.
From-SVN: r177443
Diffstat (limited to 'gcc/ada/gnat1drv.adb')
-rw-r--r-- | gcc/ada/gnat1drv.adb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/ada/gnat1drv.adb b/gcc/ada/gnat1drv.adb index be047854b62..653a10c1990 100644 --- a/gcc/ada/gnat1drv.adb +++ b/gcc/ada/gnat1drv.adb @@ -464,6 +464,10 @@ procedure Gnat1drv is Warning_Mode := Suppress; + -- Suppress the generation of name tables for enumerations + + Global_Discard_Names := True; + -- Always perform semantics and generate ALI files in ALFA mode, -- so that a gnatmake -c -k will proceed further when possible. |