mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-15 09:33:39 +00:00
Wrap a long line and add some parens to be consistent.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98596 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
999aee24c7
commit
8d95e0be13
@ -243,8 +243,9 @@ ARMLoadStoreOpt::MergeOps(MachineBasicBlock &MBB,
|
|||||||
BaseKill = true; // New base is always killed right its use.
|
BaseKill = true; // New base is always killed right its use.
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isDPR = Opcode == ARM::VLDRD || Opcode == ARM::VSTRD;
|
bool isDPR = (Opcode == ARM::VLDRD || Opcode == ARM::VSTRD);
|
||||||
bool isDef = isi32Load(Opcode) || Opcode == ARM::VLDRS || Opcode == ARM::VLDRD;
|
bool isDef = (isi32Load(Opcode) || Opcode == ARM::VLDRS ||
|
||||||
|
Opcode == ARM::VLDRD);
|
||||||
Opcode = getLoadStoreMultipleOpcode(Opcode);
|
Opcode = getLoadStoreMultipleOpcode(Opcode);
|
||||||
MachineInstrBuilder MIB = (isAM4)
|
MachineInstrBuilder MIB = (isAM4)
|
||||||
? BuildMI(MBB, MBBI, dl, TII->get(Opcode))
|
? BuildMI(MBB, MBBI, dl, TII->get(Opcode))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user