From: Chandler Carruth Date: Wed, 24 Feb 2010 06:09:03 +0000 (+0000) Subject: Remove an unused variable. Was this intentional? X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ff28103b192a7e818f92628c2a4e34e622c1a142;p=oota-llvm.git Remove an unused variable. Was this intentional? git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97022 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMBaseRegisterInfo.cpp b/lib/Target/ARM/ARMBaseRegisterInfo.cpp index e941a769c9d..c0c95fea131 100644 --- a/lib/Target/ARM/ARMBaseRegisterInfo.cpp +++ b/lib/Target/ARM/ARMBaseRegisterInfo.cpp @@ -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(); return hasReservedCallFrame(MF) || MF.getFrameInfo()->hasVarSizedObjects(); }