mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
5ee5ba12be
llvm-svn: 62547
9 lines
187 B
LLVM
9 lines
187 B
LLVM
; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep movsd | count 1
|
|
; rdar://6504833
|
|
|
|
define float @f(i32 %x) nounwind readnone {
|
|
entry:
|
|
%0 = uitofp i32 %x to float
|
|
ret float %0
|
|
}
|