Do not override FP rounding options for 32bit platforms. amd64 doesn't

need this.
This commit is contained in:
Alexander Kabaev 2003-07-12 19:33:34 +00:00
parent e0c22597cb
commit e329c5e19f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=117479

View File

@ -128,10 +128,12 @@ Boston, MA 02111-1307, USA. */
compiler get the contents of <float.h> and std::numeric_limits correct. */
#define SUBTARGET_OVERRIDE_OPTIONS \
do { \
real_format_for_mode[XFmode - QFmode] \
= &ieee_extended_intel_96_round_53_format; \
real_format_for_mode[TFmode - QFmode] \
= &ieee_extended_intel_96_round_53_format; \
if (!TARGET_64BIT) { \
real_format_for_mode[XFmode - QFmode] \
= &ieee_extended_intel_96_round_53_format; \
real_format_for_mode[TFmode - QFmode] \
= &ieee_extended_intel_96_round_53_format; \
} \
} while (0)
/* Tell final.c that we don't need a label passed to mcount. */