Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / uint_to_fp.ll
blobd8e0b61ed199fae3f5106d18113eecbcad9f7485
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=i386-apple-darwin8 -mattr=+sse2 | FileCheck %s --check-prefix=X86
3 ; RUN: llc < %s -mtriple=x86_64-apple-darwin8 -mattr=+sse2 | FileCheck %s --check-prefix=X64
4 ; rdar://6034396
6 define void @test(i32 %x, ptr %y) nounwind {
7 ; X86-LABEL: test:
8 ; X86:       ## %bb.0: ## %entry
9 ; X86-NEXT:    movl {{[0-9]+}}(%esp), %eax
10 ; X86-NEXT:    movl {{[0-9]+}}(%esp), %ecx
11 ; X86-NEXT:    shrl $23, %ecx
12 ; X86-NEXT:    cvtsi2ss %ecx, %xmm0
13 ; X86-NEXT:    movss %xmm0, (%eax)
14 ; X86-NEXT:    retl
16 ; X64-LABEL: test:
17 ; X64:       ## %bb.0: ## %entry
18 ; X64-NEXT:    shrl $23, %edi
19 ; X64-NEXT:    cvtsi2ss %edi, %xmm0
20 ; X64-NEXT:    movss %xmm0, (%rsi)
21 ; X64-NEXT:    retq
22 entry:
23   lshr i32 %x, 23
24   uitofp i32 %0 to float
25   store float %1, ptr %y
26   ret void