diff options
author | Tobias Grosser <tobias@grosser.es> | 2013-10-12 18:29:15 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2013-10-12 18:29:15 +0000 |
commit | 5cff1e2d786ea2dd28a12c3a90df7173fdcb113b (patch) | |
tree | 373cf00ac2bd8ce115d7f5147bb65c6834e3c81c /llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | |
parent | 53bd167c60dca5d0e59c0069d2644aecc2151985 (diff) | |
download | bcm5719-llvm-5cff1e2d786ea2dd28a12c3a90df7173fdcb113b.tar.gz bcm5719-llvm-5cff1e2d786ea2dd28a12c3a90df7173fdcb113b.zip |
LoopVectorize: Add missing INITIALIZE_PASS_DEPENDENCY macros
Contributed-by: Peter Zotov <whitequark@whitequark.org>
llvm-svn: 192536
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/LoopVectorize.cpp')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index a34d5b3fe5b..e85d4fc9229 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -4863,7 +4863,10 @@ char LoopVectorize::ID = 0; static const char lv_name[] = "Loop Vectorization"; INITIALIZE_PASS_BEGIN(LoopVectorize, LV_NAME, lv_name, false, false) INITIALIZE_AG_DEPENDENCY(TargetTransformInfo) +INITIALIZE_PASS_DEPENDENCY(DominatorTree) INITIALIZE_PASS_DEPENDENCY(ScalarEvolution) +INITIALIZE_PASS_DEPENDENCY(LCSSA) +INITIALIZE_PASS_DEPENDENCY(LoopInfo) INITIALIZE_PASS_DEPENDENCY(LoopSimplify) INITIALIZE_PASS_END(LoopVectorize, LV_NAME, lv_name, false, false) |