Fix pointer info on PPC byval stores
[oota-llvm.git] / test / Transforms / InstCombine / setcc-strength-reduce.ll
index 9931ccb2fd2599c375b6743dff8b43c83858ac7c..138712e5a9b632baffeaaddedf0c6a0cc4c07e16 100644 (file)
@@ -2,8 +2,8 @@
 ; working.  Basically this boils down to converting setlt,gt,le,ge instructions
 ; into equivalent setne,eq instructions.
 ;
-; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \
-; RUN:    grep -v {icmp eq} | grep -v {icmp ne} | not grep icmp
+; RUN: opt < %s -instcombine -S | \
+; RUN:    grep -v "icmp eq" | grep -v "icmp ne" | not grep icmp
 ; END.
 
 define i1 @test1(i32 %A) {