diff options
author | Robert Dewar <dewar@adacore.com> | 2015-03-02 11:24:33 +0000 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2015-03-02 12:24:33 +0100 |
commit | 89f0276a49a2ae68f3dd086b237037cdce6ed6b4 (patch) | |
tree | 3229683b6e527c4242f24c3647c94ed861dfce61 /gcc/ada/back_end.adb | |
parent | 3830827c54e72b96400c9f9803b5518e8fb9f23d (diff) | |
download | gcc-89f0276a49a2ae68f3dd086b237037cdce6ed6b4.zip gcc-89f0276a49a2ae68f3dd086b237037cdce6ed6b4.tar.gz gcc-89f0276a49a2ae68f3dd086b237037cdce6ed6b4.tar.bz2 |
back_end.adb (Call_Back_End): Remove previous patch...
2015-03-02 Robert Dewar <dewar@adacore.com>
* back_end.adb (Call_Back_End): Remove previous patch,
the back end now gets to see the result of -gnatd.1
(Unnest_Subprogram_Mode) processing.
* elists.ads, elists.adb (List_Length): New function.
* exp_unst.ads, exp_unst.adb: Major changes, first complete version.
* sem_util.adb (Check_Nested_Access): Handle formals in
Unnest_Subprogram_Mode.
(Adjust_Named_Associations): Minor reformatting.
* sprint.adb (Sprint_Node_Actual): Fix failure to print aliased
for parameters.
From-SVN: r221115
Diffstat (limited to 'gcc/ada/back_end.adb')
-rw-r--r-- | gcc/ada/back_end.adb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/ada/back_end.adb b/gcc/ada/back_end.adb index e7176d2..7768687 100644 --- a/gcc/ada/back_end.adb +++ b/gcc/ada/back_end.adb @@ -118,12 +118,6 @@ package body Back_End is return; end if; - -- Skip call if unnesting subprograms (temp for now ???) - - if Opt.Unnest_Subprogram_Mode then - return; - end if; - -- The back end needs to know the maximum line number that can appear -- in a Sloc, in other words the maximum logical line number. |