mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
d0a5fdb32f
tricky since there's a 3rd 64-bit type, MMX vectors. PR 7135. llvm-svn: 104308
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
|
|
}
|