llvm/llvm/test/CodeGen/RISCV/rv64zksed-intrinsic.ll

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -mtriple=riscv64 -mattr=+zksed -verify-machineinstrs < %s \
; RUN:   | FileCheck %s -check-prefix=RV64ZKSED

declare i32 @llvm.riscv.sm4ks(i32, i32, i32);

define signext i32 @sm4ks_i32(i32 signext %a, i32 signext %b) nounwind {
; RV64ZKSED-LABEL: sm4ks_i32:
; RV64ZKSED:       # %bb.0:
; RV64ZKSED-NEXT:    sm4ks a0, a0, a1, 2
; RV64ZKSED-NEXT:    ret
  %val = call i32 @llvm.riscv.sm4ks(i32 %a, i32 %b, i32 2)
  ret i32 %val
}

declare i32 @llvm.riscv.sm4ed(i32, i32, i32);

define signext i32 @sm4ed_i32(i32 signext %a, i32 signext %b) nounwind {
; RV64ZKSED-LABEL: sm4ed_i32:
; RV64ZKSED:       # %bb.0:
; RV64ZKSED-NEXT:    sm4ed a0, a0, a1, 3
; RV64ZKSED-NEXT:    ret
  %val = call i32 @llvm.riscv.sm4ed(i32 %a, i32 %b, i32 3)
  ret i32 %val
}