[clang] [llvm] [Clang][RISCV] Add Zvabd intrinsics (PR #180929)
Pengcheng Wang via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 12 03:32:29 PST 2026
================
@@ -1907,6 +1907,18 @@ let TargetPrefix = "riscv" in {
def int_riscv_vsm3me : RISCVBinaryAAXUnMasked;
} // TargetPrefix = "riscv"
+//===----------------------------------------------------------------------===//
+// Zvabd - Vector Absolute Difference
+//===----------------------------------------------------------------------===//
+let TargetPrefix = "riscv" in {
+
+ defm vabs : RISCVUnaryAA;
+ defm vabd : RISCVBinaryAAX;
----------------
wangpc-pp wrote:
I have added a `RISCVBinaryAAA`.
https://github.com/llvm/llvm-project/pull/180929
More information about the cfe-commits
mailing list