[llvm-commits] [llvm] r83589 - /llvm/trunk/lib/CodeGen/PreAllocSplitting.cpp

Evan Cheng evan.cheng at apple.com
Thu Oct 8 15:42:36 PDT 2009


Author: evancheng
Date: Thu Oct  8 17:42:35 2009
New Revision: 83589

URL: http://llvm.org/viewvc/llvm-project?rev=83589&view=rev
Log:
Remove code that makes no sense.

Modified:
    llvm/trunk/lib/CodeGen/PreAllocSplitting.cpp

Modified: llvm/trunk/lib/CodeGen/PreAllocSplitting.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/PreAllocSplitting.cpp?rev=83589&r1=83588&r2=83589&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/PreAllocSplitting.cpp (original)
+++ llvm/trunk/lib/CodeGen/PreAllocSplitting.cpp Thu Oct  8 17:42:35 2009
@@ -1193,8 +1193,6 @@
   while (!Intervals.empty()) {
     if (PreSplitLimit != -1 && (int)NumSplits == PreSplitLimit)
       break;
-    else if (NumSplits == 4)
-      Change |= Change;
     LiveInterval *LI = Intervals.back();
     Intervals.pop_back();
     bool result = SplitRegLiveInterval(LI);





More information about the llvm-commits mailing list