Add support for v1i128 type.
[oota-llvm.git] / test / TableGen / BitOffsetDecoder.td
index 1a95d94ee127f372bf63999e902bdc9177be7ac1..ec0ceeee8a6d0b5140192522380e7ede81f5fa28 100644 (file)
@@ -69,6 +69,6 @@ def bum : Instruction {
 
 // CHECK: tmp = fieldFromInstruction(insn, 8, 7);
 // CHECK: tmp = fieldFromInstruction(insn, 8, 8) << 3;
-// CHECK: tmp |= (fieldFromInstruction(insn, 8, 4) << 7);
-// CHECK: tmp |= (fieldFromInstruction(insn, 12, 4) << 3);
-// CHECK: tmp = fieldFromInstruction(insn, 8, 8) << 4;
\ No newline at end of file
+// CHECK: tmp |= fieldFromInstruction(insn, 8, 4) << 7;
+// CHECK: tmp |= fieldFromInstruction(insn, 12, 4) << 3;
+// CHECK: tmp = fieldFromInstruction(insn, 8, 8) << 4;