diff options
author | Thomas Quinot <quinot@adacore.com> | 2011-08-29 13:40:26 +0000 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-29 15:40:26 +0200 |
commit | 9f0ee9886ac57341562e79ebb3008f414275701b (patch) | |
tree | 2155e77510d3abc6475c6e567bc000a7577cc71a | |
parent | 3e24afaa6a24e1955ad0f3cd1ca00b6edec67a67 (diff) | |
download | gcc-9f0ee9886ac57341562e79ebb3008f414275701b.zip gcc-9f0ee9886ac57341562e79ebb3008f414275701b.tar.gz gcc-9f0ee9886ac57341562e79ebb3008f414275701b.tar.bz2 |
system-freebsd-x86_64.ads (Backend_Overflow_Checks): Set true True.
2011-08-29 Thomas Quinot <quinot@adacore.com>
* system-freebsd-x86_64.ads (Backend_Overflow_Checks): Set true True.
Remove unused variables.
From-SVN: r178229
-rw-r--r-- | gcc/ada/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/ada/system-freebsd-x86_64.ads | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 1ba297c..f4e7ca3 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,8 @@ +2011-08-29 Thomas Quinot <quinot@adacore.com> + + * system-freebsd-x86_64.ads (Backend_Overflow_Checks): Set true True. + Remove unused variables. + 2011-08-29 Ed Schonberg <schonberg@adacore.com> * sem_res.adb: Remove Build_Explicit_Dereference. diff --git a/gcc/ada/system-freebsd-x86_64.ads b/gcc/ada/system-freebsd-x86_64.ads index b699ef1..8f523a2 100644 --- a/gcc/ada/system-freebsd-x86_64.ads +++ b/gcc/ada/system-freebsd-x86_64.ads @@ -5,9 +5,9 @@ -- S Y S T E M -- -- -- -- S p e c -- --- (FreeBSD/x86_64 Version) -- +-- (FreeBSD/x86_64 Version) -- -- -- --- Copyright (C) 1992-2009, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2011, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- @@ -116,7 +116,7 @@ private -- of the individual switch values. Backend_Divide_Checks : constant Boolean := False; - Backend_Overflow_Checks : constant Boolean := False; + Backend_Overflow_Checks : constant Boolean := True; Command_Line_Args : constant Boolean := True; Configurable_Run_Time : constant Boolean := False; Denorm : constant Boolean := True; @@ -131,7 +131,6 @@ private Stack_Check_Default : constant Boolean := False; Stack_Check_Probes : constant Boolean := True; Stack_Check_Limits : constant Boolean := False; - Support_64_Bit_Divides : constant Boolean := True; Support_Aggregates : constant Boolean := True; Support_Composite_Assign : constant Boolean := True; Support_Composite_Compare : constant Boolean := True; @@ -140,6 +139,5 @@ private Suppress_Standard_Library : constant Boolean := False; Use_Ada_Main_Program_Name : constant Boolean := False; ZCX_By_Default : constant Boolean := True; - GCC_ZCX_Support : constant Boolean := True; end System; |