brintos

brintos / llvm-project-archived public Read only

0
0
Text · 724 B · bbb9248 Raw
16 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py2; RUN: llc -mtriple=aarch64-none-linux-gnu -mattr=+sve,+f32mm < %s -o - | FileCheck %s3 4define <vscale x 4 x float> @fmmla_s(<vscale x 4 x float> %r, <vscale x 4 x float> %a, <vscale x 4 x float> %b) nounwind {5; CHECK-LABEL: fmmla_s:6; CHECK:       // %bb.0: // %entry7; CHECK-NEXT:    fmmla z0.s, z1.s, z2.s8; CHECK-NEXT:    ret9entry:10  %val = tail call <vscale x 4 x float> @llvm.aarch64.sve.fmmla.nxv4f32(<vscale x 4 x float> %r, <vscale x 4 x float> %a, <vscale x 4 x float> %b)11  ret <vscale x 4 x float> %val12}13 14declare <vscale x 4 x float> @llvm.aarch64.sve.fmmla.nxv4f32(<vscale x 4 x float>,<vscale x 4 x float>,<vscale x 4 x float>)15 16