1 // RUN: %clang -target s390x-linux-gnu -march=z13 -S %s -o - -msoft-float | FileCheck %s
2 // REQUIRES: systemz-registered-target
4 // Check that -msoft-float works all the way to assembly output.
6 double fun0(double *A
) {
8 // CHECK-NOT: {{%f[0-9]}}
9 // CHECK: brasl %r14, __adddf3@PLT
13 typedef int v4si
__attribute__ ((vector_size (16)));
16 // CHECK-NOT: {{%[v][0-9]}}
21 v4si B
= {1, 1, 1, 1};