[PATCH] D75384: OpenMP for loop fusion
Johannes Doerfert via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 19 22:29:54 PDT 2020
jdoerfert requested changes to this revision.
jdoerfert added a comment.
This revision now requires changes to proceed.
This doesn't seem to use dominance at all. How do you handle
if (a) {
#pragma omp for
for (int i = 0; i < 10; i++)
;
} else {
#pragma omp for
for (int i = 0; i < 10; i++)
;
}
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75384/new/
https://reviews.llvm.org/D75384
More information about the llvm-commits
mailing list