diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-04 10:50:25 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-04 10:50:25 +0200 |
commit | a4640a3936bb760801ca5d2d44152a3424a8facb (patch) | |
tree | d6b414dd132c799d806e53f7814358013c4f0e2f /gcc/ada/sem_ch5.adb | |
parent | 39ade2f90880866196d78b8f523613c60828fd78 (diff) | |
download | gcc-a4640a3936bb760801ca5d2d44152a3424a8facb.zip gcc-a4640a3936bb760801ca5d2d44152a3424a8facb.tar.gz gcc-a4640a3936bb760801ca5d2d44152a3424a8facb.tar.bz2 |
[multiple changes]
2011-08-04 Eric Botcazou <ebotcazou@adacore.com>
* bindgen.adb: Add comments.
2011-08-04 Yannick Moy <moy@adacore.com>
* einfo.adb, einfo.ads: Free Flag254 and make Formal_Proof_On a
synthesized flag.
* sem_prag.adb (Analyze_Pragma): record the pragma Annotate
(Formal_Proof, On/Off) in the Rep_Item list of the current subprogram.
2011-08-04 Robert Dewar <dewar@adacore.com>
* exp_ch7.adb, exp_ch6.adb, sem_ch3.adb, layout.adb, sem_ch5.adb,
osint-c.ads, sem_util.ads, gnat1drv.adb, targparm.ads, sem_ch6.adb,
sem_ch13.adb, s-pooloc.adb: Minor reformatting.
From-SVN: r177334
Diffstat (limited to 'gcc/ada/sem_ch5.adb')
-rw-r--r-- | gcc/ada/sem_ch5.adb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/ada/sem_ch5.adb b/gcc/ada/sem_ch5.adb index b9c03c0..8936daa 100644 --- a/gcc/ada/sem_ch5.adb +++ b/gcc/ada/sem_ch5.adb @@ -2098,8 +2098,9 @@ package body Sem_Ch5 is -- elements of a container using the OF syntax. if Is_In_ALFA (Etype (Id)) - and then (No (Iterator_Specification (N)) - or else not Of_Present (Iterator_Specification (N))) + and then + (No (Iterator_Specification (N)) + or else not Of_Present (Iterator_Specification (N))) then Set_Is_In_ALFA (Id); end if; |