diff options
author | Raul E. Silvera <rsilvera@google.com> | 2014-03-06 01:37:10 +0000 |
---|---|---|
committer | Raul E. Silvera <rsilvera@google.com> | 2014-03-06 01:37:10 +0000 |
commit | 57a98509616eb5c17821c84de64a9995509bb636 (patch) | |
tree | e70f1a8ba738cbc2ff98b23fab3d4d8c9970c744 | |
parent | 6bb07f60246be22c799f6a5450661b1af830ecbe (diff) | |
download | bcm5719-llvm-57a98509616eb5c17821c84de64a9995509bb636.tar.gz bcm5719-llvm-57a98509616eb5c17821c84de64a9995509bb636.zip |
Update clang test to cover for new treatment of intrinsics as readnone.
llvm-svn: 203056
-rw-r--r-- | clang/test/CodeGen/libcalls.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CodeGen/libcalls.c b/clang/test/CodeGen/libcalls.c index 71e241679fb..8120b752562 100644 --- a/clang/test/CodeGen/libcalls.c +++ b/clang/test/CodeGen/libcalls.c @@ -52,9 +52,9 @@ void test_pow(float a0, double a1, long double a2) { // CHECK-YES: declare float @powf(float, float) // CHECK-YES: declare double @pow(double, double) // CHECK-YES: declare x86_fp80 @powl(x86_fp80, x86_fp80) -// CHECK-NO: declare float @llvm.pow.f32(float, float) [[NUW_RO:#[0-9]+]] -// CHECK-NO: declare double @llvm.pow.f64(double, double) [[NUW_RO]] -// CHECK-NO: declare x86_fp80 @llvm.pow.f80(x86_fp80, x86_fp80) [[NUW_RO]] +// CHECK-NO: declare float @llvm.pow.f32(float, float) [[NUW_RNI:#[0-9]+]] +// CHECK-NO: declare double @llvm.pow.f64(double, double) [[NUW_RNI]] +// CHECK-NO: declare x86_fp80 @llvm.pow.f80(x86_fp80, x86_fp80) [[NUW_RNI]] // CHECK-YES-LABEL: define void @test_fma // CHECK-NO-LABEL: define void @test_fma @@ -127,4 +127,4 @@ void test_builtins(double d, float f, long double ld) { // CHECK-YES: attributes [[NUW_RN]] = { nounwind readnone } // CHECK-NO: attributes [[NUW_RN]] = { nounwind readnone{{.*}} } -// CHECK-NO: attributes [[NUW_RO]] = { nounwind readonly } +// CHECK-NO: attributes [[NUW_RNI]] = { nounwind readnone } |