1 ; Test vector negation on z14.
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z14 | FileCheck %s
5 ; Test a v4f32 negation.
6 define <4 x float> @f1(<4 x float> %dummy, <4 x float> %val) {
8 ; CHECK: vflcsb %v24, %v26
10 %ret = fneg <4 x float> %val
14 ; Test an f32 negation that uses vector registers.
15 define float @f2(<4 x float> %val) {
17 ; CHECK: wflcsb %f0, %v24
19 %scalar = extractelement <4 x float> %val, i32 0
20 %ret = fneg float %scalar