diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-07-18 11:36:24 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-07-18 11:36:24 +0200 |
commit | 39678b1cce476a8a661ff58632a2d3c74ceb2bd9 (patch) | |
tree | 275adb1503ca3ea11102cee669ab69591c42a362 /gcc/ada/tree_io.ads | |
parent | cf28c974d4868d94b6a5cee2c36c5dc617a7444d (diff) | |
download | gcc-39678b1cce476a8a661ff58632a2d3c74ceb2bd9.zip gcc-39678b1cce476a8a661ff58632a2d3c74ceb2bd9.tar.gz gcc-39678b1cce476a8a661ff58632a2d3c74ceb2bd9.tar.bz2 |
[multiple changes]
2014-07-18 Arnaud Charlet <charlet@adacore.com>
* gnat_ugn.texi: Doc clarification.
* sem_ch13.adb (Kill_Rep_Clause): Use Replace not Rewrite.
* sem_ch13.ads: Minor comment update.
2014-07-18 Robert Dewar <dewar@adacore.com>
* repinfo.ads: Minor comment fix.
2014-07-18 Robert Dewar <dewar@adacore.com>
* par-prag.adb: Add dummy entry for Default_Scalar_Storage_Order.
* sem_prag.adb: Add dummy implementation of
Default_Scalar_Storage_Order.
* snames.ads-tmpl: Add dummy entry for
Default_Scalar_Storage_Order pragma.
2014-07-18 Robert Dewar <dewar@adacore.com>
* opt.adb (Tree_Read): Read Address_Is_Private,
Ignore_Rep_Clauses, Ignore_Style_Check_Pragmas, Multiple_Unit_Index.
(Tree_Write): Corresponding writes
* opt.ads: Minor comment reformatting and fixes.
* tree_io.ads: Increment ASIS_Version_Number.
From-SVN: r212790
Diffstat (limited to 'gcc/ada/tree_io.ads')
-rw-r--r-- | gcc/ada/tree_io.ads | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ada/tree_io.ads b/gcc/ada/tree_io.ads index bab7f9e..75816be 100644 --- a/gcc/ada/tree_io.ads +++ b/gcc/ada/tree_io.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2013, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2014, 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- -- @@ -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 := 33; + ASIS_Version_Number : constant := 34; -- 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 @@ -64,6 +64,9 @@ package Tree_IO is -- the hierarchy of child units -- 33 Add copying subtrees for rewriting infix calls of operator -- functions for the corresponding original nodes. + -- 34 Add read/write of Address_Is_Private, Ignore_Rep_Clauses, + -- Ignore_Style_Check_Pragmas, Multiple_Unit_Index. Also this + -- is the version where rep clauses are removed by -gnatI. procedure Tree_Read_Initialize (Desc : File_Descriptor); -- Called to initialize reading of a tree file. This call must be made |