diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-04 03:44:24 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-04 03:44:24 +0000 |
commit | e1a0c21252a7cbb7db83de7f6ed56871dbd09e85 (patch) | |
tree | 4a128e69117b5a32dca739d96076f748a37e0e79 /fixincludes/tests | |
parent | f24ec26f1cabb4f55cdb4370f35b67807df8fb7a (diff) | |
download | gcc-e1a0c21252a7cbb7db83de7f6ed56871dbd09e85.tar.gz |
* inclhack.def (solaris_math_5, solaris_math_6, solaris_math_7):
Delete fixes.
* tests/base/iso/math_c99.h: Delete associated test baselines.
* fixincl.x: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127198 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'fixincludes/tests')
-rw-r--r-- | fixincludes/tests/base/iso/math_c99.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/fixincludes/tests/base/iso/math_c99.h b/fixincludes/tests/base/iso/math_c99.h index bc2b653424d..e87ca874276 100644 --- a/fixincludes/tests/base/iso/math_c99.h +++ b/fixincludes/tests/base/iso/math_c99.h @@ -51,46 +51,6 @@ #endif /* SOLARIS_MATH_4_CHECK */ -#if defined( SOLARIS_MATH_5_CHECK ) -#ident "@(#)math_c99.h 1.9 04/11/01 SMI" -#undef isfinite -#define isfinite(x) \ - __extension__ ({ const __typeof (x) __x_f = (x); \ - __builtin_expect(sizeof(__x_f) == sizeof(float) \ - ? islessequal(__builtin_fabsf(__x_f),__FLT_MAX__) \ - : sizeof(__x_f) == sizeof(long double) \ - ? islessequal(__builtin_fabsl(__x_f),__LDBL_MAX__) \ - : islessequal(__builtin_fabs(__x_f),__DBL_MAX__), 1); }) -#endif /* SOLARIS_MATH_5_CHECK */ - - -#if defined( SOLARIS_MATH_6_CHECK ) -#ident "@(#)math_c99.h 1.9 04/11/01 SMI" -#undef isinf -#define isinf(x) \ - __extension__ ({ const __typeof (x) __x_i = (x); \ - __builtin_expect(sizeof(__x_i) == sizeof(float) \ - ? isgreater(__builtin_fabsf(__x_i),__FLT_MAX__) \ - : sizeof(__x_i) == sizeof(long double) \ - ? isgreater(__builtin_fabsl(__x_i),__LDBL_MAX__) \ - : isgreater(__builtin_fabs(__x_i),__DBL_MAX__), 0); }) -#endif /* SOLARIS_MATH_6_CHECK */ - - -#if defined( SOLARIS_MATH_7_CHECK ) -#ident "@(#)math_c99.h 1.9 04/11/01 SMI" -#undef isnormal -#define isnormal(x) \ - __extension__ ({ const __typeof(x) __x_n = (x); \ - __builtin_expect(isfinite(__x_n) \ - && (sizeof(__x_n) == sizeof(float) \ - ? isgreaterequal(__builtin_fabsf(__x_n),__FLT_MIN__) \ - : sizeof(__x_n) == sizeof(long double) \ - ? isgreaterequal(__builtin_fabsl(__x_n),__LDBL_MIN__) \ - : isgreaterequal(__builtin_fabs(__x_n),__DBL_MIN__)), 1); }) -#endif /* SOLARIS_MATH_7_CHECK */ - - #if defined( SOLARIS_MATH_8_CHECK ) #ident "@(#)math_c99.h 1.9 04/11/01 SMI" #undef signbit |