1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

Coding style change (Adding 1 missing space.)

llvm-svn: 104670
This commit is contained in:
Shih-wei Liao 2010-05-26 04:46:50 +00:00
parent 2f4221272a
commit c535c0e055

View File

@ -816,7 +816,7 @@ void ARMCodeEmitter::emitDataProcessingInstruction(const MachineInstr &MI,
Binary |= ((Hi16 >> 12) & 0xF) << 16;
emitWordLE(Binary);
return;
} else if((TID.Opcode == ARM::BFC) || (TID.Opcode == ARM::BFI)) {
} else if ((TID.Opcode == ARM::BFC) || (TID.Opcode == ARM::BFI)) {
uint32_t v = ~MI.getOperand(2).getImm();
int32_t lsb = CountTrailingZeros_32(v);
int32_t msb = (32 - CountLeadingZeros_32(v)) - 1;