Displaying 1 result from an estimated 1 matches for "ff60969".
Did you mean:
ff6f0969
2013 Jul 16
0
[LLVMdev] [PATCH 2/2] X86: infer immediate forms of bit-test instructions
...r::Create(Given_mem + 4 * (Given_imm / 32),
+ getContext());
+ Operands.begin()[2] = X86Operand::CreateMem(Op2_transformed, Loc, Loc);
+
+ delete &Op1;
+ delete &Op2;
+ }
+ }
+
return false;
}
diff --git a/test/MC/X86/x86-64.s b/test/MC/X86/x86-64.s
index ff60969..e82db1e 100644
--- a/test/MC/X86/x86-64.s
+++ b/test/MC/X86/x86-64.s
@@ -694,6 +694,13 @@ movl 0, %eax // CHECK: movl 0, %eax # encoding: [0x8b,0x04,0x25,0x00,0x00,0x00
// CHECK: encoding: [0x75,A]
jnz 0
+// Infer immediate form of bit-test instructions without suffix
+bt $1, 0 //...