diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
commit | bfef399519ca9b8a4b4c6b563253bad7e0eeffe0 (patch) | |
tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /test/CodeGen/libcalls-ld.c | |
parent | 6a0372513edbc473b538d2f724efac50405d6fef (diff) |
Diffstat (limited to 'test/CodeGen/libcalls-ld.c')
-rw-r--r-- | test/CodeGen/libcalls-ld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/libcalls-ld.c b/test/CodeGen/libcalls-ld.c index 2758761b5ee1..dfa7835d6b73 100644 --- a/test/CodeGen/libcalls-ld.c +++ b/test/CodeGen/libcalls-ld.c @@ -1,8 +1,8 @@ // llvm-gcc -O1+ should run simplify libcalls, O0 shouldn't // and -fno-builtins shouldn't. // -fno-math-errno should emit an llvm intrinsic, -fmath-errno should not. -// RUN: %clang_cc1 %s -emit-llvm -fno-math-errno -O0 -o - | grep {call.*exp2\\..*f} -// RUN: %clang_cc1 %s -emit-llvm -fmath-errno -O0 -o - | grep {call.*exp2l} +// RUN: %clang_cc1 %s -emit-llvm -fno-math-errno -o - | grep {call.*exp2\\..*f} +// RUN: %clang_cc1 %s -emit-llvm -fmath-errno -o - | grep {call.*exp2l} // RUN: %clang_cc1 %s -emit-llvm -O1 -o - | grep {call.*ldexp} // RUN: %clang_cc1 %s -emit-llvm -O3 -fno-builtin -o - | grep {call.*exp2l} |