[PATCH] D43007: Add missed PostDominatorTree analysis dependency to GVN hoist pass.

Alexander Ivchenko via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 8 03:49:38 PST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL324597: Add missed PostDominatorTree analysis dependency to GVN hoist pass. (authored by aivchenk, committed by ).

Repository:
  rL LLVM

https://reviews.llvm.org/D43007

Files:
  llvm/trunk/lib/Transforms/Scalar/GVNHoist.cpp


Index: llvm/trunk/lib/Transforms/Scalar/GVNHoist.cpp
===================================================================
--- llvm/trunk/lib/Transforms/Scalar/GVNHoist.cpp
+++ llvm/trunk/lib/Transforms/Scalar/GVNHoist.cpp
@@ -1200,6 +1200,7 @@
 INITIALIZE_PASS_DEPENDENCY(MemoryDependenceWrapperPass)
 INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass)
 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
+INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass)
 INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
 INITIALIZE_PASS_END(GVNHoistLegacyPass, "gvn-hoist",
                     "Early GVN Hoisting of Expressions", false, false)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D43007.133399.patch
Type: text/x-patch
Size: 638 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180208/5063eaf4/attachment.bin>


More information about the llvm-commits mailing list