Fix testcase. This should no longer be XFAIL'd

llvm-svn: 10086
This commit is contained in:
Chris Lattner 2003-11-19 18:34:44 +00:00
parent 9c68fa3ab1
commit d19da4ce5b
1 changed files with 1 additions and 1 deletions

View File

@ -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 }