linux-packaging-mono/external/llvm/test/CodeGen/X86/dont-trunc-store-double-to-float.ll
Xamarin Public Jenkins (auto-signing) 64ac736ec5 Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
2019-04-12 14:10:50 +00:00

21 lines
399 B
LLVM

; 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
}