summaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-11-26 23:14:37 +0000
committerChad Rosier <mcrosier@apple.com>2012-11-26 23:14:37 +0000
commit216532ac0a7b333e814cc86b7c91358db6a7e819 (patch)
tree618142d4b42ed52dcdc04f83996bb5e39cd1af92 /lib/CodeGen
parent0c617e6026c9b1521aab100662f5c3664dda1768 (diff)
downloadllvm-216532ac0a7b333e814cc86b7c91358db6a7e819.tar.gz
llvm-216532ac0a7b333e814cc86b7c91358db6a7e819.tar.bz2
llvm-216532ac0a7b333e814cc86b7c91358db6a7e819.tar.xz
Now that the X86 Maximal Stack Alignment Check pass has been removed (i.e.,
r168627), we no longer need to call the freezeReservedRegs() function a second time. Previously, this pass was conservatively adding the FP to the set of reserved registers, requiring the second update to the reserved registers. rdar://12719844 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168630 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/RegAllocBase.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAllocBase.cpp b/lib/CodeGen/RegAllocBase.cpp
index 993dbc71de..2b598e3a56 100644
--- a/lib/CodeGen/RegAllocBase.cpp
+++ b/lib/CodeGen/RegAllocBase.cpp
@@ -58,7 +58,6 @@ void RegAllocBase::init(VirtRegMap &vrm,
VRM = &vrm;
LIS = &lis;
Matrix = &mat;
- MRI->freezeReservedRegs(vrm.getMachineFunction());
RegClassInfo.runOnMachineFunction(vrm.getMachineFunction());
}