mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-05 14:52:02 +00:00
Removed unused variable, detected by gcc
-Wunused-but-set-variable. Leftover from r181979. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181993 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0ed9f1fd86
commit
d4cdf88cb9
@ -119,13 +119,11 @@ void XCoreFrameLowering::emitPrologue(MachineFunction &MF) const {
|
|||||||
bool saveLR = XFI->getUsesLR();
|
bool saveLR = XFI->getUsesLR();
|
||||||
// Do we need to allocate space on the stack?
|
// Do we need to allocate space on the stack?
|
||||||
if (FrameSize) {
|
if (FrameSize) {
|
||||||
bool LRSavedOnEntry = false;
|
|
||||||
int Opcode;
|
int Opcode;
|
||||||
if (saveLR && (MFI->getObjectOffset(XFI->getLRSpillSlot()) == 0)) {
|
if (saveLR && (MFI->getObjectOffset(XFI->getLRSpillSlot()) == 0)) {
|
||||||
Opcode = (isU6) ? XCore::ENTSP_u6 : XCore::ENTSP_lu6;
|
Opcode = (isU6) ? XCore::ENTSP_u6 : XCore::ENTSP_lu6;
|
||||||
MBB.addLiveIn(XCore::LR);
|
MBB.addLiveIn(XCore::LR);
|
||||||
saveLR = false;
|
saveLR = false;
|
||||||
LRSavedOnEntry = true;
|
|
||||||
} else {
|
} else {
|
||||||
Opcode = (isU6) ? XCore::EXTSP_u6 : XCore::EXTSP_lu6;
|
Opcode = (isU6) ? XCore::EXTSP_u6 : XCore::EXTSP_lu6;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user