mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
d1232fa1c0
Also, replaced line with 'target triple' with flag -mtriple on the RUN line. Removed the data layout string as it is not needed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231654 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
614 B
LLVM
18 lines
614 B
LLVM
; RUN: llc -mtriple=x86_64-pc-linux-gnu -mattr=+avx < %s | FileCheck %s
|
|
|
|
@in = global <4 x i64> <i64 -1, i64 -1, i64 -1, i64 -1>, align 32
|
|
@out = global <2 x i64> zeroinitializer, align 16
|
|
|
|
define i32 @_Z3foov() {
|
|
entry:
|
|
; CHECK: vmovdqa in(%rip), %ymm0
|
|
; CHECK-NEXT: vmovq %xmm0, %xmm0
|
|
; CHECK-NEXT: vmovdqa %xmm0, out(%rip)
|
|
%0 = load <4 x i64>, <4 x i64>* @in, align 32
|
|
%vecext = extractelement <4 x i64> %0, i32 0
|
|
%vecinit = insertelement <2 x i64> undef, i64 %vecext, i32 0
|
|
%vecinit1 = insertelement <2 x i64> %vecinit, i64 0, i32 1
|
|
store <2 x i64> %vecinit1, <2 x i64>* @out, align 16
|
|
ret i32 0
|
|
}
|