Now that the X86 Maximal Stack Alignment Check pass has been removed (i.e.,
authorChad Rosier <mcrosier@apple.com>
Mon, 26 Nov 2012 23:14:37 +0000 (23:14 +0000)
committerChad Rosier <mcrosier@apple.com>
Mon, 26 Nov 2012 23:14:37 +0000 (23:14 +0000)
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

lib/CodeGen/RegAllocBase.cpp

index 993dbc71ded377c3f215830091e76392ef6d10c5..2b598e3a56562a7d3cfeb72f7a5d3155c0380e14 100644 (file)
@@ -58,7 +58,6 @@ void RegAllocBase::init(VirtRegMap &vrm,
   VRM = &vrm;
   LIS = &lis;
   Matrix = &mat;
-  MRI->freezeReservedRegs(vrm.getMachineFunction());
   RegClassInfo.runOnMachineFunction(vrm.getMachineFunction());
 }