diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2005-04-29 10:11:23 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2005-04-29 10:11:23 +0000 |
commit | a2ddce3119b6cfd6581f0f2208fbc5882f032d7e (patch) | |
tree | b8ac8abbe4e5e25d56616950a30e56616b085ee4 | |
parent | 9610da26707992bfc0c1d15646186c965d86b81a (diff) | |
download | bcm5719-llvm-a2ddce3119b6cfd6581f0f2208fbc5882f032d7e.tar.gz bcm5719-llvm-a2ddce3119b6cfd6581f0f2208fbc5882f032d7e.zip |
Fix the success criteria for the test to make call instructions with "pow"
not just any occurrence of "pow".
llvm-svn: 21620
-rw-r--r-- | llvm/test/Regression/Transforms/SimplifyLibCalls/Pow.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Regression/Transforms/SimplifyLibCalls/Pow.ll b/llvm/test/Regression/Transforms/SimplifyLibCalls/Pow.ll index c6d4b0f594e..721f627ed38 100644 --- a/llvm/test/Regression/Transforms/SimplifyLibCalls/Pow.ll +++ b/llvm/test/Regression/Transforms/SimplifyLibCalls/Pow.ll @@ -1,5 +1,5 @@ ; Test that the StrCatOptimizer works correctly -; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'pow' +; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*pow' declare double %pow(double,double) %fpstorage = global double 5.0 |