1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-20 11:32:33 +00:00

Remove an unused variable. Was this intentional?

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97022 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chandler Carruth 2010-02-24 06:09:03 +00:00
parent 02f73585f7
commit ff28103b19

@ -1091,7 +1091,6 @@ hasReservedCallFrame(MachineFunction &MF) const {
// even when FP is available in Thumb2 mode.
bool ARMBaseRegisterInfo::
canSimplifyCallFramePseudos(MachineFunction &MF) const {
ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
return hasReservedCallFrame(MF) || MF.getFrameInfo()->hasVarSizedObjects();
}