[llvm] r218564 - Update test case to match minor formatting change introduced in r218563.

Craig Topper craig.topper at gmail.com
Fri Sep 26 22:36:53 PDT 2014


Author: ctopper
Date: Sat Sep 27 00:36:53 2014
New Revision: 218564

URL: http://llvm.org/viewvc/llvm-project?rev=218564&view=rev
Log:
Update test case to match minor formatting change introduced in r218563.

Modified:
    llvm/trunk/test/TableGen/BitOffsetDecoder.td

Modified: llvm/trunk/test/TableGen/BitOffsetDecoder.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/TableGen/BitOffsetDecoder.td?rev=218564&r1=218563&r2=218564&view=diff
==============================================================================
--- llvm/trunk/test/TableGen/BitOffsetDecoder.td (original)
+++ llvm/trunk/test/TableGen/BitOffsetDecoder.td Sat Sep 27 00:36:53 2014
@@ -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;





More information about the llvm-commits mailing list