Get rid of traling whitespaces. No functionality change.

llvm-svn: 100404
This commit is contained in:
Johnny Chen 2010-04-05 04:51:50 +00:00
parent dba13e7922
commit dacfd2c6d4
1 changed files with 1 additions and 1 deletions

View 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;