[PATCH] D77989: Allow disabling of vectorization using internal options
Teresa Johnson via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 14 17:25:43 PDT 2020
tejohnson marked an inline comment as done.
tejohnson added inline comments.
================
Comment at: llvm/lib/Transforms/Vectorize/LoopVectorize.cpp:7618-7621
+ : InterleaveOnlyWhenForced(Opts.InterleaveOnlyWhenForced |
+ !EnableLoopInterleaving),
+ VectorizeOnlyWhenForced(Opts.VectorizeOnlyWhenForced |
+ !EnableLoopVectorization) {}
----------------
wmi wrote:
> Use boolean operator || instead of bitwise operator?
Good catch, fixed.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77989/new/
https://reviews.llvm.org/D77989
More information about the cfe-commits
mailing list