[llvm] 7e2f2f0 - [RISCV][NFC] Make a note of the operands for RISCVISD::VNSRL_VL

Luke Lau via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 21 01:45:14 PST 2023


Author: Luke Lau
Date: 2023-02-21T09:45:09Z
New Revision: 7e2f2f0fc8f114bc076785d9da61c58326e9d423

URL: https://github.com/llvm/llvm-project/commit/7e2f2f0fc8f114bc076785d9da61c58326e9d423
DIFF: https://github.com/llvm/llvm-project/commit/7e2f2f0fc8f114bc076785d9da61c58326e9d423.diff

LOG: [RISCV][NFC] Make a note of the operands for RISCVISD::VNSRL_VL

Split out from https://reviews.llvm.org/D144092

Reviewed By: craig.topper

Differential Revision: https://reviews.llvm.org/D144387

Added: 
    

Modified: 
    llvm/lib/Target/RISCV/RISCVISelLowering.h

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/RISCV/RISCVISelLowering.h b/llvm/lib/Target/RISCV/RISCVISelLowering.h
index e625c97af90aa..35b90068d65b0 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.h
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.h
@@ -270,6 +270,8 @@ enum NodeType : unsigned {
   VWSUB_W_VL,
   VWSUBU_W_VL,
 
+  // Narrowing logical shift right.
+  // Operands are (source, shift, passthru, mask, vl)
   VNSRL_VL,
 
   // Vector compare producing a mask. Fourth operand is input mask. Fifth


        


More information about the llvm-commits mailing list