[PATCH] D45659: [CallSiteSplitting] Add missing pass dependency

Xin Tong via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Apr 14 19:45:10 PDT 2018


trentxintong created this revision.
Herald added a subscriber: llvm-commits.
trentxintong added reviewers: junbuml, davide, fhahn.

Repository:
  rL LLVM

https://reviews.llvm.org/D45659

Files:
  lib/Transforms/Scalar/CallSiteSplitting.cpp


Index: lib/Transforms/Scalar/CallSiteSplitting.cpp
===================================================================
--- lib/Transforms/Scalar/CallSiteSplitting.cpp
+++ lib/Transforms/Scalar/CallSiteSplitting.cpp
@@ -539,6 +539,7 @@
 char CallSiteSplittingLegacyPass::ID = 0;
 INITIALIZE_PASS_BEGIN(CallSiteSplittingLegacyPass, "callsite-splitting",
                       "Call-site splitting", false, false)
+INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
 INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
 INITIALIZE_PASS_END(CallSiteSplittingLegacyPass, "callsite-splitting",


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D45659.142534.patch
Type: text/x-patch
Size: 656 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180415/434a7f90/attachment.bin>


More information about the llvm-commits mailing list