diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-29 10:46:47 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-29 10:46:47 +0200 |
commit | 5cd7bb153885a9019abec99103faa3b9420e4298 (patch) | |
tree | af32761a5b1f5d2db7ba2a7682855b6af0ca16df /gcc/ada/targparm.ads | |
parent | 25b589cbd523d5b7ccf42c7807f9cac86879008d (diff) | |
download | gcc-5cd7bb153885a9019abec99103faa3b9420e4298.zip gcc-5cd7bb153885a9019abec99103faa3b9420e4298.tar.gz gcc-5cd7bb153885a9019abec99103faa3b9420e4298.tar.bz2 |
[multiple changes]
2011-08-29 Arnaud Charlet <charlet@adacore.com>
* opt.ads: Minor editing.
2011-08-29 Yannick Moy <moy@adacore.com>
* gnat1drv.adb (Adjust_Global_Switches): Remove options for ALFA mode
that only made sense for CodePeer mode.
2011-08-29 Jose Ruiz <ruiz@adacore.com>
* targparm.ads (Support_64_Bit_Divides_On_Target): Remove this flag
which is no longer used.
* targparm.adb (S64, S64_Str, Get_Target_Parameters): Remove the
handling of the 64-bit division check.
* exp_ch4.adb (Expand_N_Op_Divide): Remove the check for 64-bit
division available.
* system*.ads (Support_64_Bit_Divides): Remove this flag which is no
longer used.
2011-08-29 Thomas Quinot <quinot@adacore.com>
* get_scos.adb: Minor reformatting.
From-SVN: r178163
Diffstat (limited to 'gcc/ada/targparm.ads')
-rw-r--r-- | gcc/ada/targparm.ads | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/ada/targparm.ads b/gcc/ada/targparm.ads index fa6e25e..cfcc371 100644 --- a/gcc/ada/targparm.ads +++ b/gcc/ada/targparm.ads @@ -391,14 +391,6 @@ package Targparm is -- used at the source level, and the corresponding flag is false, then an -- error message will be issued saying the feature is not supported. - Support_64_Bit_Divides_On_Target : Boolean := True; - -- If True, the back end supports 64-bit divide operations. If False, then - -- the source program may not contain 64-bit divide operations. This is - -- specifically useful in the zero foot-print case, where the issue is - -- whether there is a hardware divide instruction for 64-bits so that - -- no run-time support is required. It should always be set True if the - -- necessary run-time support is present. - Support_Aggregates_On_Target : Boolean := True; -- In the general case, the use of aggregates may generate calls -- to run-time routines in the C library, including memset, memcpy, |