[PATCH] D69069: [LoopExtractor] Convert LoopExtractor from LoopPass to ModulePass
Ehud Katz via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 12 11:38:38 PST 2020
ekatz added a comment.
In D69069#1872630 <https://reviews.llvm.org/D69069#1872630>, @fhahn wrote:
> Is it possible that this broke the sanitizer bot? http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-fast/builds/38687/steps/check-llvm%20asan/logs/stdio
Seems like it... :/
I wonder if it is because of the duplication of the dependencies in:
INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
as `LoopSimplify` already depends on `LoopInfoWrapperPass` which depends on `DominatorTreeWrapperPass`.
I'll try to remove the last 2.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D69069/new/
https://reviews.llvm.org/D69069
More information about the llvm-commits
mailing list