mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-02 08:26:39 +00:00
Fix 80-col violations and remove trailing whitespace. No functional changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71562 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -220,8 +220,9 @@ bool ARMConstantIslands::runOnMachineFunction(MachineFunction &Fn) {
|
||||
// the numbers agree with the position of the block in the function.
|
||||
Fn.RenumberBlocks();
|
||||
|
||||
/// Thumb functions containing constant pools get 2-byte alignment. This is so
|
||||
/// we can keep exact track of where the alignment padding goes. Set default.
|
||||
/// Thumb functions containing constant pools get 2-byte alignment.
|
||||
/// This is so we can keep exact track of where the alignment padding goes.
|
||||
/// Set default.
|
||||
AFI->setAlign(isThumb ? 1U : 2U);
|
||||
|
||||
// Perform the initial placement of the constant pool entries. To start with,
|
||||
@@ -558,7 +559,8 @@ MachineBasicBlock *ARMConstantIslands::SplitBlockBeforeInstr(MachineInstr *MI) {
|
||||
MachineFunction &MF = *OrigBB->getParent();
|
||||
|
||||
// Create a new MBB for the code after the OrigBB.
|
||||
MachineBasicBlock *NewBB = MF.CreateMachineBasicBlock(OrigBB->getBasicBlock());
|
||||
MachineBasicBlock *NewBB =
|
||||
MF.CreateMachineBasicBlock(OrigBB->getBasicBlock());
|
||||
MachineFunction::iterator MBBI = OrigBB; ++MBBI;
|
||||
MF.insert(MBBI, NewBB);
|
||||
|
||||
|
Reference in New Issue
Block a user