disable this entirely: it is causing use of invalidated iterators and infinite looping.
authorChris Lattner <sabre@nondot.org>
Sun, 7 Oct 2007 22:00:31 +0000 (22:00 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 7 Oct 2007 22:00:31 +0000 (22:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42739 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86RegisterInfo.cpp

index d6b0ec846163937b8cbb987b36d077956a0ac91e..83cb03c76f8afe0f07b24cda525a1bb10a9e5c0c 100644 (file)
@@ -1505,6 +1505,8 @@ static
 void mergeSPUpdatesDown(MachineBasicBlock &MBB,
                         MachineBasicBlock::iterator &MBBI,
                         unsigned StackPtr, uint64_t *NumBytes = NULL) {
+  return;
+  
   if (MBBI == MBB.end()) return;
   
   MachineBasicBlock::iterator NI = next(MBBI);