diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2013-09-10 17:09:33 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2013-09-10 17:09:33 +0200 |
commit | 4bb9c7b9ed2ddc21915fd41fcac2bd0b77609c7c (patch) | |
tree | d84e0f24984fb57d8df8e6e6cf11bfab406ce96c /gcc/ada/tree_io.ads | |
parent | cdcf1c7ae29ef372a214904575aad282171285ff (diff) | |
download | gcc-4bb9c7b9ed2ddc21915fd41fcac2bd0b77609c7c.zip gcc-4bb9c7b9ed2ddc21915fd41fcac2bd0b77609c7c.tar.gz gcc-4bb9c7b9ed2ddc21915fd41fcac2bd0b77609c7c.tar.bz2 |
[multiple changes]
2013-09-10 Robert Dewar <dewar@adacore.com>
* switch-c.adb: Diagnose -gnatc given after -gnatRm.
* gnat_ugn.texi: Add documentation for -gnatRm.
* usage.adb: Minor reorganization (put style entries in proper
order) Document -gnatRm switch.
* sinfo.ads: Minor comment fix.
2013-09-10 Sergey Rybin <rybin@adacore.com frybin>
* tree_io.ads: Update ASIS_Version_Number.
2013-09-10 Ed Schonberg <schonberg@adacore.com>
* sem_ch3.adb (Access_Subprogram_Declaration): Check whether the
designated type can appear in a parameterless call.
* sem_ch4.adb (Analyze_Call): Do not insert an explicit dereference
in the case of an indirect call through an access function that
returns an array type.
(Analyze_One_Call): Handle properly legal parameterless calls
whose result is indexed, in constructs of the for F.all (I)
* sem_ch6.ads (May_Need_Actuals): Make public, for use on access
to subprogram types.
* sem_res.adb (Resolve_Call): If the call is indirect, there is
no entity to set on the name in the call.
From-SVN: r202461
Diffstat (limited to 'gcc/ada/tree_io.ads')
-rw-r--r-- | gcc/ada/tree_io.ads | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ada/tree_io.ads b/gcc/ada/tree_io.ads index 3692d1e..bab7f9e 100644 --- a/gcc/ada/tree_io.ads +++ b/gcc/ada/tree_io.ads @@ -47,7 +47,7 @@ package Tree_IO is Tree_Format_Error : exception; -- Raised if a format error is detected in the input file - ASIS_Version_Number : constant := 32; + ASIS_Version_Number : constant := 33; -- ASIS Version. This is used to check for consistency between the compiler -- used to generate trees and an ASIS application that is reading the -- trees. It must be incremented whenever a change is made to the tree @@ -62,6 +62,8 @@ package Tree_IO is -- 31 Remove read/write of Debug_Pragmas_Disabled/Debug_Pragmas_Enabled -- 32 Change the way entities are changed through Next_Entity field in -- the hierarchy of child units + -- 33 Add copying subtrees for rewriting infix calls of operator + -- functions for the corresponding original nodes. procedure Tree_Read_Initialize (Desc : File_Descriptor); -- Called to initialize reading of a tree file. This call must be made |