diff options
| author | Dan Gohman <gohman@apple.com> | 2010-01-08 02:20:44 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-01-08 02:20:44 +0000 |
| commit | d1e76b957bf94d986ba1e2c1614cbad82eaf94d0 (patch) | |
| tree | c5073d73a4850897132cef35e2d0190c29a4ea06 /clang/test/CodeGen | |
| parent | 39d70940e422cf7cfadd9a8eb454616cfef9fa18 (diff) | |
| download | bcm5719-llvm-d1e76b957bf94d986ba1e2c1614cbad82eaf94d0.tar.gz bcm5719-llvm-d1e76b957bf94d986ba1e2c1614cbad82eaf94d0.zip | |
Use -fno-math-errno by default, and remove the IsMathErrnoDefault
targethook, which is no longer being used. This fixes PR5971.
llvm-svn: 92987
Diffstat (limited to 'clang/test/CodeGen')
| -rw-r--r-- | clang/test/CodeGen/libcalls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/libcalls.c b/clang/test/CodeGen/libcalls.c index fe12f4a08a5..a96176afe5b 100644 --- a/clang/test/CodeGen/libcalls.c +++ b/clang/test/CodeGen/libcalls.c @@ -1,7 +1,7 @@ -// RUN: %clang_cc1 -emit-llvm -o %t %s -triple i386-unknown-unknown +// RUN: %clang_cc1 -fmath-errno -emit-llvm -o %t %s -triple i386-unknown-unknown // RUN: grep "declare " %t | count 6 // RUN: grep "declare " %t | grep "@llvm." | count 1 -// RUN: %clang_cc1 -fno-math-errno -emit-llvm -o %t %s -triple i386-unknown-unknown +// RUN: %clang_cc1 -emit-llvm -o %t %s -triple i386-unknown-unknown // RUN: grep "declare " %t | count 6 // RUN: grep "declare " %t | grep -v "@llvm." | count 0 |

