diff options
author | Davide Italiano <davide@freebsd.org> | 2016-05-16 02:29:53 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2016-05-16 02:29:53 +0000 |
commit | 6f852eedbf69b52ea26dfc9c85153800312603eb (patch) | |
tree | 5988b7b41a5314c56255885b6153c5fbdadf3224 | |
parent | b27ebb88245a719690ed3e76c6a405fcb8666931 (diff) | |
download | bcm5719-llvm-6f852eedbf69b52ea26dfc9c85153800312603eb.tar.gz bcm5719-llvm-6f852eedbf69b52ea26dfc9c85153800312603eb.zip |
[PM] RewriterStatepointForGC: add missing dependency.
llvm-svn: 269624
-rw-r--r-- | llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp b/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp index 6603f677981..1a2c6eedc1b 100644 --- a/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp +++ b/llvm/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) |