[llvm] [RISCV] Move performCombineVMergeAndVOps into RISCVFoldMasks (PR #71764)
Philip Reames via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 14 10:56:39 PST 2023
================
@@ -59,22 +70,21 @@ char RISCVFoldMasks::ID = 0;
INITIALIZE_PASS(RISCVFoldMasks, DEBUG_TYPE, "RISC-V Fold Masks", false, false)
-bool RISCVFoldMasks::isAllOnesMask(MachineInstr *MaskCopy) {
- if (!MaskCopy)
+bool RISCVFoldMasks::isAllOnesMask(MachineInstr *MaskDef) {
+ if (!MaskDef)
----------------
preames wrote:
Unrelated rename and code motion, please land separately and rebase.
https://github.com/llvm/llvm-project/pull/71764
More information about the llvm-commits
mailing list