From: Davide Italiano Date: Mon, 16 May 2016 02:29:53 +0000 (+0000) Subject: [PM] RewriterStatepointForGC: add missing dependency. X-Git-Tag: android-x86-7.1-r4~33404 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=d125b8b5b616a6ca1c6f07a6d46800090830478d;p=android-x86%2Fexternal-llvm.git [PM] RewriterStatepointForGC: add missing dependency. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@269624 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp b/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp index 6603f677981..1a2c6eedc1b 100644 --- a/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp +++ b/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp @@ -131,6 +131,7 @@ ModulePass *llvm::createRewriteStatepointsForGCPass() { INITIALIZE_PASS_BEGIN(RewriteStatepointsForGC, "rewrite-statepoints-for-gc", "Make relocations explicit at statepoints", false, false) INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) +INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass) INITIALIZE_PASS_END(RewriteStatepointsForGC, "rewrite-statepoints-for-gc", "Make relocations explicit at statepoints", false, false)