From: Reid Spencer Date: Tue, 26 Apr 2005 02:33:25 +0000 (+0000) Subject: Fix RUN: line to not always pass. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c89c36323b607603a54d3651ac9858e0276537fd;p=oota-llvm.git Fix RUN: line to not always pass. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21553 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/SimplifyLibCalls/2005-04-24-strcat.ll b/test/Transforms/SimplifyLibCalls/2005-04-24-strcat.ll index a0e7a6c10ee..992837fc5cc 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*)