diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-14 08:37:08 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-14 08:37:08 +0000 |
commit | 2af58f67b743ad50326b0a93dde262515d2145b8 (patch) | |
tree | 0b0083f9957b2140f9c2d30921874267d00521be /gcc/ada/inline.adb | |
parent | 65297ca971f11afebfb1d420d32bc4c769bbbdf5 (diff) | |
download | gcc-2af58f67b743ad50326b0a93dde262515d2145b8.tar.gz |
2007-08-14 Robert Dewar <dewar@adacore.com>
Ed Schonberg <schonberg@adacore.com>
* inline.adb, types.ads, inline.ads, frontend.adb, alloc.ads:
Suppress unmodified in-out parameter warning in some cases
This patch is a also fairly significant change to the way suppressible
checks are handled.
* checks.ads, checks.adb (Install_Null_Excluding_Check): No check
needed for access to concurrent record types generated by the expander.
(Generate_Range_Check): When generating a temporary to capture the
value of a conversion that requires a range check, set the type of the
temporary before rewriting the node, so that the type is always
properly placed for back-end use.
(Apply_Float_Conversion_Check): Handle case where the conversion is
truncating.
(Get_Discriminal): Code reformatting. Climb the scope stack looking
for a protected type in order to examine its discriminants.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127410 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/inline.adb')
-rw-r--r-- | gcc/ada/inline.adb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/ada/inline.adb b/gcc/ada/inline.adb index c9b43ba187c..597c975bb3b 100644 --- a/gcc/ada/inline.adb +++ b/gcc/ada/inline.adb @@ -957,7 +957,6 @@ package body Inline is -- set (that's why we can't simply use a FOR loop here). J := 0; - while J <= Pending_Instantiations.Last and then Serious_Errors_Detected = 0 loop |