[llvm-commits] CVS: llvm/lib/Transforms/Utils/LCSSA.cpp

Evan Cheng evan.cheng at apple.com
Sun Jun 11 02:33:40 PDT 2006



Changes in directory llvm/lib/Transforms/Utils:

LCSSA.cpp updated: 1.17 -> 1.18
---
Log message:

Back out Owen's 6/9 changes. They broke MultiSource/Benchmarks/Prolangs-C/bison (and perhaps others).

---
Diffs of the changes:  (+1 -3)

 LCSSA.cpp |    4 +---
 1 files changed, 1 insertion(+), 3 deletions(-)


Index: llvm/lib/Transforms/Utils/LCSSA.cpp
diff -u llvm/lib/Transforms/Utils/LCSSA.cpp:1.17 llvm/lib/Transforms/Utils/LCSSA.cpp:1.18
--- llvm/lib/Transforms/Utils/LCSSA.cpp:1.17	Fri Jun  9 13:33:30 2006
+++ llvm/lib/Transforms/Utils/LCSSA.cpp	Sun Jun 11 04:32:57 2006
@@ -98,7 +98,7 @@
   for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I) {
     changed |= visitSubloop(*I);
   }
-  
+      
   return changed;
 }
 
@@ -132,8 +132,6 @@
     processInstruction(*I, exitBlocks);
   }
   
-  assert(L->isLCSSAForm());
-  
   return true;
 }
 






More information about the llvm-commits mailing list