forked from OSchip/llvm-project
Whitespace change to reduce diff in future patch.
Patch 2 of 11 in 'Add a "probe-stack" attribute' review thread Patch by: john.kare.alsaker@gmail.com llvm-svn: 216235
This commit is contained in:
parent
7820c80f7d
commit
4e8cb79425
|
@ -734,12 +734,12 @@ void X86FrameLowering::emitPrologue(MachineFunction &MF) const {
|
|||
.setMIFlag(MachineInstr::FrameSetup);
|
||||
}
|
||||
if (isEAXAlive) {
|
||||
// Restore EAX
|
||||
MachineInstr *MI = addRegOffset(BuildMI(MF, DL, TII.get(X86::MOV32rm),
|
||||
X86::EAX),
|
||||
StackPtr, false, NumBytes - 4);
|
||||
MI->setFlag(MachineInstr::FrameSetup);
|
||||
MBB.insert(MBBI, MI);
|
||||
// Restore EAX
|
||||
MachineInstr *MI = addRegOffset(BuildMI(MF, DL, TII.get(X86::MOV32rm),
|
||||
X86::EAX),
|
||||
StackPtr, false, NumBytes - 4);
|
||||
MI->setFlag(MachineInstr::FrameSetup);
|
||||
MBB.insert(MBBI, MI);
|
||||
}
|
||||
} else if (NumBytes) {
|
||||
emitSPUpdate(MBB, MBBI, StackPtr, -(int64_t)NumBytes, Is64Bit, Uses64BitFramePtr,
|
||||
|
|
Loading…
Reference in New Issue