diff options
author | Craig Burley <craig@jcb-sc.com> | 1999-05-12 04:38:14 +0000 |
---|---|---|
committer | Craig Burley <burley@gcc.gnu.org> | 1999-05-12 00:38:14 -0400 |
commit | 41af162ca78944f562a35c32287de901abd9c84f (patch) | |
tree | f7c4558b2172417e3b2b03bb7c224145bce433f2 /gcc/expr.c | |
parent | 7d9a55eb5b7415e6ccdfa4cfb87c1dfdacff2379 (diff) | |
download | gcc-41af162ca78944f562a35c32287de901abd9c84f.zip gcc-41af162ca78944f562a35c32287de901abd9c84f.tar.gz gcc-41af162ca78944f562a35c32287de901abd9c84f.tar.bz2 |
disable maintenance of errno
From-SVN: r26897
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8757,7 +8757,7 @@ expand_builtin (exp, target, subtarget, mode, ignore) /* Check the results by default. But if flag_fast_math is turned on, then assume sqrt will always be called with valid arguments. */ - if (! flag_fast_math) + if (flag_errno_math && ! flag_fast_math) { /* Don't define the builtin FP instructions if your machine is not IEEE. */ |