From: Chris Lattner Date: Wed, 19 Nov 2003 18:34:44 +0000 (+0000) Subject: Fix testcase. This should no longer be XFAIL'd X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f9e8379c2938b015cd1b90a619fa3d2dd7a7200f;p=oota-llvm.git Fix testcase. This should no longer be XFAIL'd git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10086 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/ConstProp/logicaltest.ll b/test/Transforms/ConstProp/logicaltest.ll index 9af914255b8..082bcaa3dae 100644 --- a/test/Transforms/ConstProp/logicaltest.ll +++ b/test/Transforms/ConstProp/logicaltest.ll @@ -1,6 +1,6 @@ ; Ensure constant propogation of logical instructions is working correctly. -; RUN: llvm-as < %s | opt -constprop -die | llvm-dis | not ggrep -E 'and|or|xor' +; RUN: llvm-as < %s | opt -constprop -die | llvm-dis | not egrep 'and|or|xor' int "test1"() { %R = and int 4,1234 ret int %R }