[PATCH] D152441: [SLPVectorizer] Don't include debug instructions in ScheduleRegionSize
Alexey Bataev via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 13 07:31:41 PDT 2023
ABataev added inline comments.
================
Comment at: llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp:11459
+ auto IsDbgInstr = [](const Instruction &I) {
+ return isa<DbgInfoIntrinsic>(&I);
+ };
----------------
I think it worth it to extend it not only for debug intrinsics, but for all ephemeral instructions, like lifetime, assume, etc.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D152441/new/
https://reviews.llvm.org/D152441
More information about the llvm-commits
mailing list