diff options
author | Sergey Rybin <rybin@adacore.com> | 2008-04-08 08:56:27 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2008-04-08 08:56:27 +0200 |
commit | cd0463fef34f7c81c4678a0b76fe4d8e388df441 (patch) | |
tree | 8f6616e3228549facda2456d198a001854242f45 | |
parent | 3017937417e39615cb08ed5f4f106f8969bcf691 (diff) | |
download | gcc-cd0463fef34f7c81c4678a0b76fe4d8e388df441.zip gcc-cd0463fef34f7c81c4678a0b76fe4d8e388df441.tar.gz gcc-cd0463fef34f7c81c4678a0b76fe4d8e388df441.tar.bz2 |
tree_io.ads: Increase ASIS_Version_Number because of adding Sem_Aux to the set of the GNAT...
2008-04-08 Sergey Rybin <rybin@adacore.com>
* tree_io.ads: Increase ASIS_Version_Number because of adding Sem_Aux
to the set of the GNAT components needed by ASIS.
From-SVN: r134056
-rw-r--r-- | gcc/ada/tree_io.ads | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/tree_io.ads b/gcc/ada/tree_io.ads index a8a49e9..d243d72 100644 --- a/gcc/ada/tree_io.ads +++ b/gcc/ada/tree_io.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2007, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2008, 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- -- @@ -46,12 +46,12 @@ package Tree_IO is Tree_Format_Error : exception; -- Raised if a format error is detected in the input file - ASIS_Version_Number : constant := 21; + ASIS_Version_Number : constant := 22; -- 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 -- format that would result in the compiler being incompatible with an - -- older version of ASIS, or vice versa. + -- older version of ASIS. procedure Tree_Read_Initialize (Desc : File_Descriptor); -- Called to initialize reading of a tree file. This call must be made |