[llvm-commits] [llvm] r150885 - /llvm/trunk/lib/Analysis/ScalarEvolutionExpander.cpp
Rafael Espindola
rafael.espindola at gmail.com
Sat Feb 18 09:51:43 PST 2012
Author: rafael
Date: Sat Feb 18 11:51:43 2012
New Revision: 150885
URL: http://llvm.org/viewvc/llvm-project?rev=150885&view=rev
Log:
Temporarily disable this assert. Looks like it found a similar issue when
building bullet.
Modified:
llvm/trunk/lib/Analysis/ScalarEvolutionExpander.cpp
Modified: llvm/trunk/lib/Analysis/ScalarEvolutionExpander.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/ScalarEvolutionExpander.cpp?rev=150885&r1=150884&r2=150885&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/ScalarEvolutionExpander.cpp (original)
+++ llvm/trunk/lib/Analysis/ScalarEvolutionExpander.cpp Sat Feb 18 11:51:43 2012
@@ -35,7 +35,9 @@
// InsertPt to ensure that the expression's expansion dominates its uses.
// Assert that the requested insertion point works at least for new
// instructions.
- assert(SE.DT->dominates(IP, Builder.GetInsertPoint()));
+
+ // FIXME: disabled to make the bots happy.
+ //assert(SE.DT->dominates(IP, Builder.GetInsertPoint()));
// Check to see if there is already a cast!
for (Value::use_iterator UI = V->use_begin(), E = V->use_end();
More information about the llvm-commits
mailing list