aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/restrict.adb
diff options
context:
space:
mode:
authorRobert Dewar <dewar@gnat.com>2001-10-25 23:53:04 +0000
committerGeert Bosch <bosch@gcc.gnu.org>2001-10-26 01:53:04 +0200
commite12fbc9e0fd83631bf8258404ecd671b720f753e (patch)
tree43f8492180db7f957790c615ed91f67a02770dee /gcc/ada/restrict.adb
parent52b804888bf0d45a1db49565c5e4694e6e3b6813 (diff)
downloadgcc-e12fbc9e0fd83631bf8258404ecd671b720f753e.zip
gcc-e12fbc9e0fd83631bf8258404ecd671b720f753e.tar.gz
gcc-e12fbc9e0fd83631bf8258404ecd671b720f753e.tar.bz2
restrict.adb (Set_No_Run_Time_Mode): Set Discard_Names as default in no run time mode.
* restrict.adb (Set_No_Run_Time_Mode): Set Discard_Names as default in no run time mode. From-SVN: r46507
Diffstat (limited to 'gcc/ada/restrict.adb')
-rw-r--r--gcc/ada/restrict.adb1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/ada/restrict.adb b/gcc/ada/restrict.adb
index 0514088..a72bf71 100644
--- a/gcc/ada/restrict.adb
+++ b/gcc/ada/restrict.adb
@@ -378,6 +378,7 @@ package body Restrict is
begin
No_Run_Time := True;
Restrictions (No_Exception_Handlers) := True;
+ Opt.Global_Discard_Names := True;
end Set_No_Run_Time_Mode;
-------------------