1 ; Test conversions of signed i64s to floating-point values.
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
6 define float @f1(i64 %i) {
8 ; CHECK: cegbr %f0, %r2
10 %conv = sitofp i64 %i to float
15 define double @f2(i64 %i) {
17 ; CHECK: cdgbr %f0, %r2
19 %conv = sitofp i64 %i to double
24 define void @f3(i64 %i, fp128 *%dst) {
26 ; CHECK: cxgbr %f0, %r2
27 ; CHECK: std %f0, 0(%r3)
28 ; CHECK: std %f2, 8(%r3)
30 %conv = sitofp i64 %i to fp128
31 store fp128 %conv, fp128 *%dst