]> granicus.if.org Git - clang/commitdiff
Adjust check for release mode.
authorEric Christopher <echristo@apple.com>
Tue, 26 Jul 2011 22:07:13 +0000 (22:07 +0000)
committerEric Christopher <echristo@apple.com>
Tue, 26 Jul 2011 22:07:13 +0000 (22:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136158 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/2005-07-20-SqrtNoErrno.c

index 873236ad2ef9c15296472e26ae61cc1f60628188..f40f61d27f31be1b453a8200b7c6ce8bc493ff9b 100644 (file)
@@ -4,7 +4,7 @@
 float sqrtf(float x);
 float foo(float X) {
   // CHECK: foo
-  // CHECK: call float @sqrtf(float %tmp) readnone
+  // CHECK: call float @sqrtf(float %
   // Check that this is marked readonly when errno is ignored.
   return sqrtf(X);
 }