From: Eric Christopher Date: Tue, 26 Jul 2011 22:07:13 +0000 (+0000) Subject: Adjust check for release mode. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d484040a5fc8d8d8a7a6a0239fc3b34486258181;p=clang Adjust check for release mode. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136158 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/2005-07-20-SqrtNoErrno.c b/test/CodeGen/2005-07-20-SqrtNoErrno.c index 873236ad2e..f40f61d27f 100644 --- a/test/CodeGen/2005-07-20-SqrtNoErrno.c +++ b/test/CodeGen/2005-07-20-SqrtNoErrno.c @@ -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); }