mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
086832979b
When compiling without SSE2, isTruncStoreLegal(F64, F32) would return Legal, whereas with SSE2 it would return Expand. And since the Target doesn't seem to actually handle a truncstore for double -> float, it would just output a store of a full double in the space for a float hence overwriting other bits on the stack. Patch by Luqman Aden! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217410 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
374 B
LLVM
21 lines
374 B
LLVM
; RUN: llc -march=x86 < %s | FileCheck %s
|
|
|
|
; CHECK-LABEL: @bar
|
|
; CHECK: movl $1074339512,
|
|
; CHECK: movl $1374389535,
|
|
; CHECK: 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* %a
|
|
|
|
%1 = fptrunc double %0 to float
|
|
|
|
store float %1, float* %b
|
|
|
|
ret void
|
|
}
|