[llvm-commits] [llvm] r101583 - /llvm/trunk/lib/Analysis/IPA/CallGraphSCCPass.cpp
Chris Lattner
sabre at nondot.org
Fri Apr 16 17:05:36 PDT 2010
Author: lattner
Date: Fri Apr 16 19:05:36 2010
New Revision: 101583
URL: http://llvm.org/viewvc/llvm-project?rev=101583&view=rev
Log:
disable r101565: an assert is getting triggered. More lurking badness no doubt.
Modified:
llvm/trunk/lib/Analysis/IPA/CallGraphSCCPass.cpp
Modified: llvm/trunk/lib/Analysis/IPA/CallGraphSCCPass.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/IPA/CallGraphSCCPass.cpp?rev=101583&r1=101582&r2=101583&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/IPA/CallGraphSCCPass.cpp (original)
+++ llvm/trunk/lib/Analysis/IPA/CallGraphSCCPass.cpp Fri Apr 16 19:05:36 2010
@@ -420,8 +420,10 @@
// Update the active scc_iterator so that it doesn't contain dangling
// pointers to the old CallGraphNode.
+#if 0
scc_iterator<CallGraph*> *CGI = (scc_iterator<CallGraph*>*)Context;
CGI->ReplaceNode(Old, New);
+#endif
}
More information about the llvm-commits
mailing list