; RUN: llc -mtriple=aarch64-linux-gnu -mattr=+sve2-aes -asm-verbose=0 < %s 2>%t | FileCheck %s ; RUN: FileCheck --check-prefix=WARN --allow-empty %s <%t ; If this check fails please read test/CodeGen/AArch64/README for instructions on how to resolve it. ; WARN-NOT: warning ; ; PMULLB ; define @pmullb_i64( %a, %b) { ; CHECK-LABEL: pmullb_i64: ; CHECK: pmullb z0.q, z0.d, z1.d ; CHECK-NEXT: ret %out = call @llvm.aarch64.sve.pmullb.pair.nxv2i64( %a, %b) ret %out } ; ; PMULLT ; define @pmullt_i64( %a, %b) { ; CHECK-LABEL: pmullt_i64: ; CHECK: pmullt z0.q, z0.d, z1.d ; CHECK-NEXT: ret %out = call @llvm.aarch64.sve.pmullt.pair.nxv2i64( %a, %b) ret %out } declare @llvm.aarch64.sve.pmullb.pair.nxv2i64(, ) declare @llvm.aarch64.sve.pmullt.pair.nxv2i64(, )