summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/X86/dont-trunc-store-double-to-float.ll
blob: e9287b8b93d42407cc00122263124f8fd62be4e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: llc -mtriple=i686-- < %s | FileCheck %s

; CHECK-LABEL: @bar
; CHECK-DAG: movl $1074339512,
; CHECK-DAG: movl $1374389535,
; CHECK-DAG: movl $1078523331,
define void @bar() unnamed_addr {
entry-block:
  %a = alloca double
  %b = alloca float

  store double 3.140000e+00, double* %a
  %0 = load double, double* %a

  %1 = fptrunc double %0 to float

  store float %1, float* %b

  ret void
}
OpenPOWER on IntegriCloud