[PATCH] D111288: [fir] Add data flow optimization pass
Valentin Clement via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 21 14:04:12 PDT 2021
clementval added inline comments.
================
Comment at: flang/lib/Optimizer/Transforms/MemRefDataFlowOpt.cpp:29
+ std::vector<OpT> ops;
+ for (auto *user : v.getUsers())
+ if (auto op = dyn_cast<OpT>(user))
----------------
mehdi_amini wrote:
> mehdi_amini wrote:
> >
> This is marked as done, but it isn't (it isn't the only one I think)
I have discussed this with others and they would like to keep it like that. The guidlines are kind of blurry on this... If this is a blocker we will ave to discuss this further.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111288/new/
https://reviews.llvm.org/D111288
More information about the llvm-commits
mailing list