mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
7d07b48b26
tricky since there's a 3rd 64-bit type, MMX vectors. PR 7135. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104308 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
409 B
LLVM
13 lines
409 B
LLVM
; RUN: llc -mtriple=x86_64-apple-darwin -mattr=-sse < %s
|
|
; PR 7135
|
|
|
|
@x = common global i64 0 ; <i64*> [#uses=1]
|
|
|
|
define i32 @foo() nounwind readonly ssp {
|
|
entry:
|
|
%0 = load i64* @x, align 8 ; <i64> [#uses=1]
|
|
%1 = uitofp i64 %0 to double ; <double> [#uses=1]
|
|
%2 = fptosi double %1 to i32 ; <i32> [#uses=1]
|
|
ret i32 %2
|
|
}
|