mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-09 13:33:17 +00:00
Coding style change (Adding 1 missing space.)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104670 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
45469f38b6
commit
9f3b6a381a
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user