[x86] Fix disassembly of callw instruction
[oota-llvm.git] / test / Transforms / InstCombine / apint-and-xor-merge.ll
index e1e4e3caaef0f0634b35f68c7b4bbd99c8fc29e3..8adffde36273514d4f0a0660d09b51cc9cc362b0 100644 (file)
@@ -1,8 +1,8 @@
 ; This test case checks that the merge of and/xor can work on arbitrary
 ; precision integers.
 
-; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep and | count 1
-; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep xor | count 2
+; RUN: opt < %s -instcombine -S | grep and | count 1
+; RUN: opt < %s -instcombine -S | grep xor | count 2
 
 ; (x &z ) ^ (y & z) -> (x ^ y) & z
 define i57 @test1(i57 %x, i57 %y, i57 %z) {