diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-01-11 22:56:41 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-01-11 22:56:41 +0000 |
commit | 89f1582616a4f01a7f230fd97337e13c317f5d35 (patch) | |
tree | 74ebe5a71041ba77415d8b2d3c7cff2233b7a990 | |
parent | fbbd4abfe5a89e432240d2c05201b44a5e2f2f78 (diff) |
Remove the PR8954 workaround.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123288 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/GVN.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Transforms/Scalar/GVN.cpp b/lib/Transforms/Scalar/GVN.cpp index 014341b867..1fd311cf98 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); |