[llvm] 992458d - [RISCV][NFC] Fix the mismatch in comment (#140511)
via llvm-commits
llvm-commits at lists.llvm.org
Mon May 19 05:28:57 PDT 2025
Author: Pengcheng Wang
Date: 2025-05-19T20:28:54+08:00
New Revision: 992458d26bbd2b8744408dbb4ab8d6b6058301d6
URL: https://github.com/llvm/llvm-project/commit/992458d26bbd2b8744408dbb4ab8d6b6058301d6
DIFF: https://github.com/llvm/llvm-project/commit/992458d26bbd2b8744408dbb4ab8d6b6058301d6.diff
LOG: [RISCV][NFC] Fix the mismatch in comment (#140511)
There should be only one `vector_in`.
And we remove the surrounding double quotes.
Added:
Modified:
llvm/include/llvm/IR/IntrinsicsRISCV.td
Removed:
################################################################################
diff --git a/llvm/include/llvm/IR/IntrinsicsRISCV.td b/llvm/include/llvm/IR/IntrinsicsRISCV.td
index 622a96cafb128..3f9e3a7a35945 100644
--- a/llvm/include/llvm/IR/IntrinsicsRISCV.td
+++ b/llvm/include/llvm/IR/IntrinsicsRISCV.td
@@ -362,7 +362,7 @@ let TargetPrefix = "riscv" in {
[ImmArg<ArgIndex<3>>, ImmArg<ArgIndex<5>>, IntrNoMem]>, RISCVVIntrinsic {
let VLOperand = 4;
}
- // Input: (passthru, vector_in, vector_in, mask, vl)
+ // Input: (passthru, vector_in, mask, vl)
class RISCVCompress
: DefaultAttrsIntrinsic<[llvm_anyvector_ty],
[LLVMMatchType<0>, LLVMMatchType<0>,
@@ -1570,7 +1570,7 @@ let TargetPrefix = "riscv" in {
defm vrgather_vx : RISCVRGatherVX;
defm vrgatherei16_vv : RISCVRGatherEI16VV;
- def "int_riscv_vcompress" : RISCVCompress;
+ def int_riscv_vcompress : RISCVCompress;
defm vaaddu : RISCVSaturatingBinaryAAXRoundingMode;
defm vaadd : RISCVSaturatingBinaryAAXRoundingMode;
More information about the llvm-commits
mailing list