mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-18 10:31:57 +00:00
11 lines
383 B
LLVM
11 lines
383 B
LLVM
|
; RUN: llvm-as < %s | llc -march=x86 -disable-mmx
|
||
|
|
||
|
; Test to check that we properly legalize an insert vector element
|
||
|
define void @test(<2 x i64> %val, <2 x i64>* %dst, i64 %x) nounwind {
|
||
|
entry:
|
||
|
%tmp4 = insertelement <2 x i64> %val, i64 %x, i32 0 ; <<2 x i64>> [#uses=1]
|
||
|
%add = add <2 x i64> %tmp4, %val ; <<2 x i64>> [#uses=1]
|
||
|
store <2 x i64> %add, <2 x i64>* %dst
|
||
|
ret void
|
||
|
}
|