From: Chris Lattner Date: Fri, 8 Sep 2006 19:11:11 +0000 (+0000) Subject: This fixes Benchmarks/Prolangs-C/unix-smail X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=cc406328bf0aaa5f25e268deed5b38be7d4dc7a5;p=oota-llvm.git This fixes Benchmarks/Prolangs-C/unix-smail git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30198 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/RegAllocLocal.cpp b/lib/CodeGen/RegAllocLocal.cpp index 2b249b2f825..8e7c1fe2a02 100644 --- a/lib/CodeGen/RegAllocLocal.cpp +++ b/lib/CodeGen/RegAllocLocal.cpp @@ -596,6 +596,8 @@ void RA::AllocateBasicBlock(MachineBasicBlock &MBB) { if (MO.isRegister() && MO.isDef() && MO.getReg() && MRegisterInfo::isPhysicalRegister(MO.getReg())) { unsigned Reg = MO.getReg(); + if (PhysRegsUsed[Reg] == -2) continue; // Something like ESP. + PhysRegsEverUsed[Reg] = true; spillPhysReg(MBB, MI, Reg, true); // Spill any existing value in the reg PhysRegsUsed[Reg] = 0; // It is free and reserved now