[AArch64] Remove unnecessary whitespace. (Test commit)
authorTom Coxon <tom.coxon@arm.com>
Tue, 30 Sep 2014 16:23:16 +0000 (16:23 +0000)
committerTom Coxon <tom.coxon@arm.com>
Tue, 30 Sep 2014 16:23:16 +0000 (16:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218680 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp

index 9e8618822eac892cbfd5419af83b2d057e973947..87b2d5096dda535017ee869c98f2716e77b39ea1 100644 (file)
@@ -588,7 +588,7 @@ static DecodeStatus DecodeFixedPointScaleImm32(llvm::MCInst &Inst, unsigned Imm,
                                                uint64_t Addr,
                                                const void *Decoder) {
   // scale{5} is asserted as 1 in tblgen.
-  Imm |= 0x20;  
+  Imm |= 0x20;
   Inst.addOperand(MCOperand::CreateImm(64 - Imm));
   return Success;
 }
@@ -1526,7 +1526,7 @@ static DecodeStatus DecodeSystemPStateInstruction(llvm::MCInst &Inst,
 
   bool ValidNamed;
   (void)AArch64PState::PStateMapper().toString(pstate_field, ValidNamed);
-  
+
   return ValidNamed ? Success : Fail;
 }