Remove some unused variables to clean up the -Werror build

llvm-svn: 252580
This commit is contained in:
David Blaikie 2015-11-10 03:16:28 +00:00
parent 3c7ecf9af1
commit e35168f008
2 changed files with 4 additions and 4 deletions

View File

@ -749,8 +749,8 @@ MachineInstr *X86FrameLowering::emitStackProbeInlineStub(
assert(InProlog && "ChkStkStub called outside prolog!");
MachineInstrBuilder CI = BuildMI(MBB, MBBI, DL, TII.get(X86::CALLpcrel32))
.addExternalSymbol("__chkstk_stub");
BuildMI(MBB, MBBI, DL, TII.get(X86::CALLpcrel32))
.addExternalSymbol("__chkstk_stub");
return MBBI;
}

View File

@ -21394,12 +21394,12 @@ X86TargetLowering::EmitLoweredCatchRet(MachineInstr *MI,
MachineBasicBlock *BB) const {
MachineFunction *MF = BB->getParent();
const Constant *PerFn = MF->getFunction()->getPersonalityFn();
bool IsSEH = isAsynchronousEHPersonality(classifyEHPersonality(PerFn));
const TargetInstrInfo &TII = *Subtarget->getInstrInfo();
MachineBasicBlock *TargetMBB = MI->getOperand(0).getMBB();
DebugLoc DL = MI->getDebugLoc();
assert(!IsSEH && "SEH does not use catchret!");
assert(!isAsynchronousEHPersonality(classifyEHPersonality(PerFn)) &&
"SEH does not use catchret!");
// Only 32-bit EH needs to worry about manually restoring stack pointers.
if (!Subtarget->is32Bit())