Adjust check for release mode.

llvm-svn: 136158
This commit is contained in:
Eric Christopher 2011-07-26 22:07:13 +00:00
parent f8fe47bd2b
commit 2dfed48cae
1 changed files with 1 additions and 1 deletions

View 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);
}