From: Jakob Stoklund Olesen Date: Tue, 11 Jan 2011 22:56:41 +0000 (+0000) Subject: Remove the PR8954 workaround. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=89f1582616a4f01a7f230fd97337e13c317f5d35;p=oota-llvm.git Remove the PR8954 workaround. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123288 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/GVN.cpp b/lib/Transforms/Scalar/GVN.cpp index 014341b867d..1fd311cf986 100644 --- a/lib/Transforms/Scalar/GVN.cpp +++ b/lib/Transforms/Scalar/GVN.cpp @@ -1753,10 +1753,6 @@ bool GVN::runOnFunction(Function& F) { } 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);