1; RUN: llc < %s -mtriple=s390x-linux-gnu -mattr=soft-float | FileCheck %s
2;
3; Check that FP registers are not saved in a vararg function if soft-float is
4; used.
5
6define void @fun0(...) {
7; CHECK-LABEL: fun0
8; CHECK-NOT: std %f0
9; CHECK-NOT: std %f2
10; CHECK-NOT: std %f4
11; CHECK-NOT: std %f6
12  ret void
13}
14
15
16