[llvm] [VPlan] Eliminate some vec temps with ArrayRef (NFC) (PR #207432)
Luke Lau via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 9 02:02:18 PDT 2026
================
@@ -3468,6 +3468,9 @@ class LLVM_ABI_FOR_TEST VPReplicateRecipe : public VPRecipeWithIRFlags,
operand_range operandsWithoutMask() {
return isPredicated() ? drop_end(operands()) : operands();
}
+ const_operand_range operandsWithoutMask() const {
+ return isPredicated() ? drop_end(operands()) : operands();
+ }
----------------
lukel97 wrote:
I think this is dead code now?
https://github.com/llvm/llvm-project/pull/207432
More information about the llvm-commits
mailing list