diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-10-21 12:25:12 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-10-21 12:25:12 +0200 |
commit | 04cbd48e9ed3fbd4c66f7ebc829276b5b83932a5 (patch) | |
tree | 2a508d74f1374d42333372412e84101c8309980d /gcc/ada/xeinfo.adb | |
parent | 7fc53871160b8543b60c86eabd3fdc7f52e4d686 (diff) | |
download | gcc-04cbd48e9ed3fbd4c66f7ebc829276b5b83932a5.zip gcc-04cbd48e9ed3fbd4c66f7ebc829276b5b83932a5.tar.gz gcc-04cbd48e9ed3fbd4c66f7ebc829276b5b83932a5.tar.bz2 |
[multiple changes]
2010-10-21 Geert Bosch <bosch@adacore.com>
* urealp.adb (UR_Write): Write hexadecimal constants with exponent 1 as
decimal constants, and write any others using the exponent notation.
Minor reformatting throughout
(Store_Ureal_Normalized): New function (minor code reorganization)
2010-10-21 Robert Dewar <dewar@adacore.com>
* einfo.ads, xeinfo.adb: Minor reformatting.
* s-stalib.ads: Minor comment fixes.
From-SVN: r165762
Diffstat (limited to 'gcc/ada/xeinfo.adb')
-rw-r--r-- | gcc/ada/xeinfo.adb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ada/xeinfo.adb b/gcc/ada/xeinfo.adb index feb5429..1c76c31 100644 --- a/gcc/ada/xeinfo.adb +++ b/gcc/ada/xeinfo.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2008, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2010, 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- -- @@ -348,6 +348,7 @@ begin -- Case of type declaration elsif Match (Line, F_Typ) then + -- Process type declaration (must be enumeration type) Ctr := 0; @@ -371,6 +372,7 @@ begin end loop; -- Process function declarations + -- Note: Lastinlined used to control blank lines Put_Line (Ofile, ""); |