mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
6904f05e60
No one uses *-mingw64. mingw-w64 is represented as {i686|x86_64}-w64-mingw32. In llvm side, i686 and x64 can be treated as similar way. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125747 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
254 B
LLVM
9 lines
254 B
LLVM
; RUN: llc -mtriple=x86_64-mingw32 < %s | FileCheck %s
|
|
; CHECK-NOT: -{{[1-9][0-9]*}}(%rsp)
|
|
|
|
define x86_fp80 @a(i64 %x) nounwind readnone {
|
|
entry:
|
|
%conv = sitofp i64 %x to x86_fp80 ; <x86_fp80> [#uses=1]
|
|
ret x86_fp80 %conv
|
|
}
|