aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2010-04-05 04:51:50 +0000
committerJohnny Chen <johnny.chen@apple.com>2010-04-05 04:51:50 +0000
commit7fb053dd45f7754b0a359a9de1a7445aefcca318 (patch)
tree550a80eec66cf4e93f0751ff00c4cebc6f68a57d /lib/Target/ARM/Disassembler/ARMDisassembler.cpp
parent9d563b676cc9f3bcd9a9806ea5e9a791f35e3d70 (diff)
Get rid of traling whitespaces. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100404 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/Disassembler/ARMDisassembler.cpp')
-rw-r--r--lib/Target/ARM/Disassembler/ARMDisassembler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/Disassembler/ARMDisassembler.cpp b/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
index c8436426c1..47c31043d9 100644
--- a/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
+++ b/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
@@ -391,7 +391,7 @@ bool ARMDisassembler::getInstruction(MCInst &MI,
(bytes[2] << 16) |
(bytes[1] << 8) |
(bytes[0] << 0);
-
+
unsigned Opcode = decodeARMInstruction(insn);
ARMFormat Format = ARMFormats[Opcode];
Size = 4;