Move sprintf simplifier tests to test/Transforms/InstCombine
[oota-llvm.git] / test / Transforms / InstCombine / apint-xor2.ll
index 91273243515bd22fa25421d960c2852152a72cd3..ab93c92381528547a893f7a198a478692ecf3662 100644 (file)
@@ -1,10 +1,9 @@
 ; This test makes sure that xor instructions are properly eliminated.
 ; This test is for Integer BitWidth > 64 && BitWidth <= 1024.
 
-; RUN: llvm-as < %s | opt -instcombine -disable-output &&
-; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep 'xor '
+; RUN: opt < %s -instcombine -S | not grep "xor "
+; END.
 
-implementation
 
 define i447 @test1(i447 %A, i447 %B) {
         ;; (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0