[llvm-commits] [llvm] r123288 - /llvm/trunk/lib/Transforms/Scalar/GVN.cpp
Jakob Stoklund Olesen
stoklund at 2pi.dk
Tue Jan 11 14:56:41 PST 2011
Author: stoklund
Date: Tue Jan 11 16:56:41 2011
New Revision: 123288
URL: http://llvm.org/viewvc/llvm-project?rev=123288&view=rev
Log:
Remove the PR8954 workaround.
Modified:
llvm/trunk/lib/Transforms/Scalar/GVN.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/GVN.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/GVN.cpp?rev=123288&r1=123287&r2=123288&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/GVN.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/GVN.cpp Tue Jan 11 16:56:41 2011
@@ -1753,10 +1753,6 @@
}
unsigned Iteration = 0;
-
- // FIXME: Remove this when PR8954 is fixed.
- DT->DT->recalculate(F);
-
while (ShouldContinue) {
DEBUG(dbgs() << "GVN iteration: " << Iteration << "\n");
ShouldContinue = iterateOnFunction(F);
More information about the llvm-commits
mailing list