1*9880d681SAndroid Build Coastguard Worker; Test loads of 128-bit floating-point constants in which the low bit of 2*9880d681SAndroid Build Coastguard Worker; the significand is set. 3*9880d681SAndroid Build Coastguard Worker; 4*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s 5*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s -check-prefix=CONST 6*9880d681SAndroid Build Coastguard Worker 7*9880d681SAndroid Build Coastguard Workerdefine void @f1(fp128 *%x) { 8*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: f1: 9*9880d681SAndroid Build Coastguard Worker; CHECK: larl [[REGISTER:%r[1-5]+]], {{.*}} 10*9880d681SAndroid Build Coastguard Worker; CHECK: ld %f0, 0([[REGISTER]]) 11*9880d681SAndroid Build Coastguard Worker; CHECK: ld %f2, 8([[REGISTER]]) 12*9880d681SAndroid Build Coastguard Worker; CHECK: std %f0, 0(%r2) 13*9880d681SAndroid Build Coastguard Worker; CHECK: std %f2, 8(%r2) 14*9880d681SAndroid Build Coastguard Worker; CHECK: br %r14 15*9880d681SAndroid Build Coastguard Worker; 16*9880d681SAndroid Build Coastguard Worker; CONST: .quad 4611404543450677248 17*9880d681SAndroid Build Coastguard Worker; CONST: .quad 1 18*9880d681SAndroid Build Coastguard Worker store fp128 0xL00000000000000013fff000000000000, fp128 *%x 19*9880d681SAndroid Build Coastguard Worker ret void 20*9880d681SAndroid Build Coastguard Worker} 21