summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/X86/2012-01-18-vbitcast.ll
blob: deee891697e64f2638f709d0f02fc138204b388e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mcpu=corei7 -mtriple=x86_64-pc-win32 | FileCheck %s

;CHECK-LABEL: vcast:
define <2 x i32> @vcast(<2 x float> %a, <2 x float> %b) {
; CHECK-LABEL: vcast:
; CHECK:       # %bb.0:
; CHECK-NEXT:    subq $16, %rsp
; CHECK-NEXT:    .seh_stackalloc 16
; CHECK-NEXT:    .seh_endprologue
; CHECK-NEXT:    pmovzxdq {{.*#+}} xmm1 = mem[0],zero,mem[1],zero
; CHECK-NEXT:    pmovzxdq {{.*#+}} xmm0 = mem[0],zero,mem[1],zero
; CHECK-NEXT:    psubq %xmm1, %xmm0
; CHECK-NEXT:    addq $16, %rsp
; CHECK-NEXT:    retq
; CHECK-NEXT:    .seh_handlerdata
; CHECK-NEXT:    .text
; CHECK-NEXT:    .seh_endproc
  %af = bitcast <2 x float> %a to <2 x i32>
  %bf = bitcast <2 x float> %b to <2 x i32>
  %x = sub <2 x i32> %af, %bf
  ret <2 x i32> %x
}

OpenPOWER on IntegriCloud