diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-06-23 10:46:08 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-06-23 10:46:08 +0200 |
commit | 7c4b480fb3736fd2a9f4fbad273dbafe04649c11 (patch) | |
tree | 133edf7db0b7358ff43b599d5a6a541f92fce9f4 /gcc/ada/ali.adb | |
parent | bb511fbd86c7a1109f71551cc0e7d1cfd733c016 (diff) | |
download | gcc-7c4b480fb3736fd2a9f4fbad273dbafe04649c11.zip gcc-7c4b480fb3736fd2a9f4fbad273dbafe04649c11.tar.gz gcc-7c4b480fb3736fd2a9f4fbad273dbafe04649c11.tar.bz2 |
[multiple changes]
2010-06-23 Thomas Quinot <quinot@adacore.com>
* sem_util.adb, sem_util.ads: Minor reformatting.
2010-06-23 Vincent Celier <celier@adacore.com>
* prj.ads (Gprclean_Flags.Missing_Source_Files): Set to Error to keep
the previous behavior of gprclean when there are missing files.
2010-06-23 Ed Schonberg <schonberg@adacore.com>
* sem_ch12.adb (Load_Body_Of_Generic): In CodePeer mode, a missing
generic body is not a fatal error.
(Mark_Context): Handle properly names of child units.
* sem.adb (Walk_Library_Items.Do_Action): Remove assertion on
instantiations.
2010-06-23 Vincent Celier <celier@adacore.com>
* ali.adb (Scan_ALI): When ignoring R lines, do not skip the next
non-empty line.
2010-06-23 Bob Duff <duff@adacore.com>
* g-pehage.ads, g-pehage.adb: Switch default optimization mode to
Memory_Space, because CPU_Time doesn't seem to provide any significant
speed advantage in practice. Cleanup: Get rid of constant
Default_Optimization; doesn't seem to add anything. Use case
statements instead of if statements; seems cleaner.
From-SVN: r161259
Diffstat (limited to 'gcc/ada/ali.adb')
-rw-r--r-- | gcc/ada/ali.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/ali.adb b/gcc/ada/ali.adb index 9effd22..eb45dca 100644 --- a/gcc/ada/ali.adb +++ b/gcc/ada/ali.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2009, 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- -- @@ -1295,9 +1295,9 @@ package body ALI is else Skip_Space; No_Deps.Append ((Id, Get_Name)); + Skip_Eol; end if; - Skip_Eol; C := Getc; end loop; |