diff options
author | Javier Miranda <miranda@adacore.com> | 2016-04-21 08:14:08 +0000 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2016-04-21 10:14:08 +0200 |
commit | 29a56f611a6c48dc6af556a02c0494ef928274d3 (patch) | |
tree | 1ff9cef286d4a241dd8a12d5405aa182e5dc3484 /gcc/ada/frontend.adb | |
parent | e379beb56f0b1e597c8aeb10c84813c8326197a9 (diff) | |
download | gcc-29a56f611a6c48dc6af556a02c0494ef928274d3.zip gcc-29a56f611a6c48dc6af556a02c0494ef928274d3.tar.gz gcc-29a56f611a6c48dc6af556a02c0494ef928274d3.tar.bz2 |
frontend.adb: Update call to Unnest_Subprograms.
2016-04-21 Javier Miranda <miranda@adacore.com>
* frontend.adb: Update call to Unnest_Subprograms.
* exp_ch6.ads, exp_ch6.adb, exp_unst.ads, exp_unst.adb
(Unnest_Subprograms): Moved to package exp_unst.
* exp_unst.ads (Unnest_Subprogram): Moved to the body of the
package.
* exp_dbug.adb (Qualify_Entity_Name): Enable qualification of
enumeration literals when generating C code.
From-SVN: r235303
Diffstat (limited to 'gcc/ada/frontend.adb')
-rw-r--r-- | gcc/ada/frontend.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/frontend.adb b/gcc/ada/frontend.adb index 1020da7..3861903 100644 --- a/gcc/ada/frontend.adb +++ b/gcc/ada/frontend.adb @@ -30,8 +30,8 @@ with Checks; with CStand; with Debug; use Debug; with Elists; -with Exp_Ch6; with Exp_Dbug; +with Exp_Unst; with Fmap; with Fname.UF; with Ghost; use Ghost; @@ -439,7 +439,7 @@ begin -- At this stage we can unnest subprogram bodies if required - Exp_Ch6.Unnest_Subprograms (Cunit (Main_Unit)); + Exp_Unst.Unnest_Subprograms (Cunit (Main_Unit)); -- List library units if requested |