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 60d2a51347
commit 44b55d7cc8

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 }