16 lines · plain
1; RUN: llc < %s -mtriple=s390x-linux-gnu -mattr=soft-float | FileCheck %s2;3; Check that FP registers are not saved in a vararg function if soft-float is4; used.5 6define void @fun0(...) {7; CHECK-LABEL: fun08; CHECK-NOT: std %f09; CHECK-NOT: std %f210; CHECK-NOT: std %f411; CHECK-NOT: std %f612 ret void13}14 15 16