diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/fast-isel-uint-float-conversion.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fast-isel-uint-float-conversion.ll | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/llvm/test/CodeGen/X86/fast-isel-uint-float-conversion.ll b/llvm/test/CodeGen/X86/fast-isel-uint-float-conversion.ll index 6aad161d406..f883ac12051 100644 --- a/llvm/test/CodeGen/X86/fast-isel-uint-float-conversion.ll +++ b/llvm/test/CodeGen/X86/fast-isel-uint-float-conversion.ll @@ -18,8 +18,7 @@ define double @int_to_double_rr(i32 %a) { ; AVX_X86-NEXT: .cfi_def_cfa_register %ebp ; AVX_X86-NEXT: andl $-8, %esp ; AVX_X86-NEXT: subl $8, %esp -; AVX_X86-NEXT: movl 8(%ebp), %eax -; AVX_X86-NEXT: vcvtusi2sdl %eax, %xmm0, %xmm0 +; AVX_X86-NEXT: vcvtusi2sdl 8(%ebp), %xmm0, %xmm0 ; AVX_X86-NEXT: vmovsd %xmm0, (%esp) ; AVX_X86-NEXT: fldl (%esp) ; AVX_X86-NEXT: movl %ebp, %esp @@ -34,8 +33,7 @@ entry: define double @int_to_double_rm(i32* %a) { ; AVX-LABEL: int_to_double_rm: ; AVX: # %bb.0: # %entry -; AVX-NEXT: movl (%rdi), %eax -; AVX-NEXT: vcvtusi2sdl %eax, %xmm0, %xmm0 +; AVX-NEXT: vcvtusi2sdl (%rdi), %xmm0, %xmm0 ; AVX-NEXT: retq ; ; AVX_X86-LABEL: int_to_double_rm: @@ -100,8 +98,7 @@ define float @int_to_float_rr(i32 %a) { ; AVX_X86: # %bb.0: # %entry ; AVX_X86-NEXT: pushl %eax ; AVX_X86-NEXT: .cfi_def_cfa_offset 8 -; AVX_X86-NEXT: movl {{[0-9]+}}(%esp), %eax -; AVX_X86-NEXT: vcvtusi2ssl %eax, %xmm0, %xmm0 +; AVX_X86-NEXT: vcvtusi2ssl {{[0-9]+}}(%esp), %xmm0, %xmm0 ; AVX_X86-NEXT: vmovss %xmm0, (%esp) ; AVX_X86-NEXT: flds (%esp) ; AVX_X86-NEXT: popl %eax @@ -115,8 +112,7 @@ entry: define float @int_to_float_rm(i32* %a) { ; AVX-LABEL: int_to_float_rm: ; AVX: # %bb.0: # %entry -; AVX-NEXT: movl (%rdi), %eax -; AVX-NEXT: vcvtusi2ssl %eax, %xmm0, %xmm0 +; AVX-NEXT: vcvtusi2ssl (%rdi), %xmm0, %xmm0 ; AVX-NEXT: retq ; ; AVX_X86-LABEL: int_to_float_rm: |