diff options
author | obrien <obrien@FreeBSD.org> | 1999-12-19 07:40:17 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-12-19 07:40:17 +0000 |
commit | 119cfeff30039ede6411a41a8d6bd98394efcba6 (patch) | |
tree | 26606147622ea667c0aa1ee9b4b1e9b8e7c354db /contrib | |
parent | 8fe589f18a7eb553bdc3946d6a845fb39287de2f (diff) | |
download | FreeBSD-src-119cfeff30039ede6411a41a8d6bd98394efcba6.zip FreeBSD-src-119cfeff30039ede6411a41a8d6bd98394efcba6.tar.gz |
Use symbolic values rather than constants in TARGET_DEFAULT.
Submitted by: bde on -current
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/gcc/config/i386/freebsd.h | 3 | ||||
-rw-r--r-- | contrib/gcc/config/i386/freebsd.h.fixed | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/contrib/gcc/config/i386/freebsd.h b/contrib/gcc/config/i386/freebsd.h index 5b8d51b..8398733 100644 --- a/contrib/gcc/config/i386/freebsd.h +++ b/contrib/gcc/config/i386/freebsd.h @@ -535,7 +535,8 @@ do { \ /* This goes away when the math emulator is fixed. */ #undef TARGET_DEFAULT -#define TARGET_DEFAULT (MASK_NO_FANCY_MATH_387 | 0301) +#define TARGET_DEFAULT \ + (MASK_80387 | MASK_IEEE_FP | MASK_FLOAT_RETURNS | MASK_NO_FANCY_MATH_387) /* FreeBSD ELF using our home-grown crtbegin.o/crtend.o does not support the DWARF2 unwinding mechanisms. Once `make world' bootstraping problems with diff --git a/contrib/gcc/config/i386/freebsd.h.fixed b/contrib/gcc/config/i386/freebsd.h.fixed index 5b8d51b..8398733 100644 --- a/contrib/gcc/config/i386/freebsd.h.fixed +++ b/contrib/gcc/config/i386/freebsd.h.fixed @@ -535,7 +535,8 @@ do { \ /* This goes away when the math emulator is fixed. */ #undef TARGET_DEFAULT -#define TARGET_DEFAULT (MASK_NO_FANCY_MATH_387 | 0301) +#define TARGET_DEFAULT \ + (MASK_80387 | MASK_IEEE_FP | MASK_FLOAT_RETURNS | MASK_NO_FANCY_MATH_387) /* FreeBSD ELF using our home-grown crtbegin.o/crtend.o does not support the DWARF2 unwinding mechanisms. Once `make world' bootstraping problems with |