1 ; RUN: llc -mtriple=aarch64-linux-gnu -mattr=+sve < %s | FileCheck %s
3 define <vscale x 8 x half> @fadd_h(<vscale x 8 x half> %a, <vscale x 8 x half> %b) {
5 ; CHECK: fadd z0.h, z0.h, z1.h
7 %res = fadd <vscale x 8 x half> %a, %b
8 ret <vscale x 8 x half> %res
11 define <vscale x 4 x float> @fadd_s(<vscale x 4 x float> %a, <vscale x 4 x float> %b) {
12 ; CHECK-LABEL: fadd_s:
13 ; CHECK: fadd z0.s, z0.s, z1.s
15 %res = fadd <vscale x 4 x float> %a, %b
16 ret <vscale x 4 x float> %res
19 define <vscale x 2 x double> @fadd_d(<vscale x 2 x double> %a, <vscale x 2 x double> %b) {
20 ; CHECK-LABEL: fadd_d:
21 ; CHECK: fadd z0.d, z0.d, z1.d
23 %res = fadd <vscale x 2 x double> %a, %b
24 ret <vscale x 2 x double> %res