15 lines
737 B
LLVM
15 lines
737 B
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc -mtriple=aarch64-none-linux-gnu -mattr=+sve,+f64mm < %s -o - | FileCheck %s
|
|
|
|
define <vscale x 2 x double> @fmmla_d(<vscale x 2 x double> %r, <vscale x 2 x double> %a, <vscale x 2 x double> %b) nounwind {
|
|
; CHECK-LABEL: fmmla_d:
|
|
; CHECK: // %bb.0: // %entry
|
|
; CHECK-NEXT: fmmla z0.d, z1.d, z2.d
|
|
; CHECK-NEXT: ret
|
|
entry:
|
|
%val = tail call <vscale x 2 x double> @llvm.aarch64.sve.fmmla.nxv2f64(<vscale x 2 x double> %r, <vscale x 2 x double> %a, <vscale x 2 x double> %b)
|
|
ret <vscale x 2 x double> %val
|
|
}
|
|
|
|
declare <vscale x 2 x double> @llvm.aarch64.sve.fmmla.nxv2f64(<vscale x 2 x double>,<vscale x 2 x double>,<vscale x 2 x double>)
|
|
|