diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2005-04-26 02:33:25 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2005-04-26 02:33:25 +0000 |
commit | c89c36323b607603a54d3651ac9858e0276537fd (patch) | |
tree | f20f54e5b27fe9b74e0894c2daf7c3e2385c2f3b | |
parent | d36f979085048f0d24dbe4a5584acd89153940a8 (diff) |
Fix RUN: line to not always pass.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21553 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/SimplifyLibCalls/2005-04-24-strcat.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/SimplifyLibCalls/2005-04-24-strcat.ll b/test/Transforms/SimplifyLibCalls/2005-04-24-strcat.ll index a0e7a6c10e..992837fc5c 100644 --- a/test/Transforms/SimplifyLibCalls/2005-04-24-strcat.ll +++ b/test/Transforms/SimplifyLibCalls/2005-04-24-strcat.ll @@ -1,5 +1,5 @@ ; Test that the StrCatOptimizer works correctly -; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | grep -v 'call.*strcat' +; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*strcat' declare sbyte* %strcat(sbyte*,sbyte*) declare int %puts(sbyte*) |