diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-02-24 06:09:03 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-02-24 06:09:03 +0000 |
commit | ff28103b192a7e818f92628c2a4e34e622c1a142 (patch) | |
tree | d697e1f199a430069b322f3f1af23b55c7381a79 | |
parent | 02f73585f7d018ea3ddcda88c8273ee4e5ea4de3 (diff) |
Remove an unused variable. Was this intentional?
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97022 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMBaseRegisterInfo.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMBaseRegisterInfo.cpp b/lib/Target/ARM/ARMBaseRegisterInfo.cpp index e941a769c9..c0c95fea13 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<ARMFunctionInfo>(); return hasReservedCallFrame(MF) || MF.getFrameInfo()->hasVarSizedObjects(); } |