diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-09-27 05:36:53 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-09-27 05:36:53 +0000 |
commit | 5ed88de99b6258819b325b8702437367f46621bc (patch) | |
tree | 884d7341cab8e20aab4fed232b4b337cbf168f9f | |
parent | 5546f8c8cc08d4f427ca09ba806b90fcf84377d5 (diff) | |
download | bcm5719-llvm-5ed88de99b6258819b325b8702437367f46621bc.tar.gz bcm5719-llvm-5ed88de99b6258819b325b8702437367f46621bc.zip |
Update test case to match minor formatting change introduced in r218563.
llvm-svn: 218564
-rw-r--r-- | llvm/test/TableGen/BitOffsetDecoder.td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/TableGen/BitOffsetDecoder.td b/llvm/test/TableGen/BitOffsetDecoder.td index 1a95d94ee12..ec0ceeee8a6 100644 --- a/llvm/test/TableGen/BitOffsetDecoder.td +++ b/llvm/test/TableGen/BitOffsetDecoder.td @@ -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; |