diff options
Diffstat (limited to 'libgcc/config/i386/crtfastmath.c')
-rw-r--r-- | libgcc/config/i386/crtfastmath.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libgcc/config/i386/crtfastmath.c b/libgcc/config/i386/crtfastmath.c index 991f531fe7d..5a267c3b1a5 100644 --- a/libgcc/config/i386/crtfastmath.c +++ b/libgcc/config/i386/crtfastmath.c @@ -21,6 +21,7 @@ * <http://www.gnu.org/licenses/>. */ +#ifndef _SOFT_FLOAT #define MXCSR_DAZ (1 << 6) /* Enable denormals are zero mode */ #define MXCSR_FTZ (1 << 15) /* Enable flush to zero mode */ @@ -134,3 +135,4 @@ set_fast_math (void) __builtin_ia32_ldmxcsr (mxcsr); #endif } +#endif |