[AVX512] add PSLLD and PSLLQ Intrinsic
[oota-llvm.git] / test / CodeGen / SystemZ / fp-const-03.ll
1 ; Test loads of 32-bit floating-point constants.
2 ;
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
4 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s -check-prefix=CONST
5
6 define float @f1() {
7 ; CHECK-LABEL: f1:
8 ; CHECK: larl [[REGISTER:%r[1-5]]], {{.*}}
9 ; CHECK: le %f0, 0([[REGISTER]])
10 ; CHECK: br %r14
11 ;
12 ; CONST: .long 1065353217
13   ret float 0x3ff0000020000000
14 }