Get rid of traling whitespaces. No functionality change.
authorJohnny Chen <johnny.chen@apple.com>
Mon, 5 Apr 2010 04:51:50 +0000 (04:51 +0000)
committerJohnny Chen <johnny.chen@apple.com>
Mon, 5 Apr 2010 04:51:50 +0000 (04:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100404 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/Disassembler/ARMDisassembler.cpp

index c8436426c1b765761510f12173da7f83482cbe8f..47c31043d9c0508d099c741b61d8b5dcb1934bc8 100644 (file)
@@ -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;