mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
a2e3b51422
They are failing in assertions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197669 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
553 B
LLVM
18 lines
553 B
LLVM
; REQUIRES: asserts
|
|
; XFAIL: *
|
|
; RUN: llc < %s -march=r600 -mcpu=redwood -o %t
|
|
|
|
define void @var_insert(<4 x i32> addrspace(1)* %out, <4 x i32> %x, i32 %val, i32 %idx) nounwind {
|
|
entry:
|
|
%tmp3 = insertelement <4 x i32> %x, i32 %val, i32 %idx ; <<4 x i32>> [#uses=1]
|
|
store <4 x i32> %tmp3, <4 x i32> addrspace(1)* %out
|
|
ret void
|
|
}
|
|
|
|
define void @var_extract(i32 addrspace(1)* %out, <4 x i32> %x, i32 %idx) nounwind {
|
|
entry:
|
|
%tmp3 = extractelement <4 x i32> %x, i32 %idx ; <<i32>> [#uses=1]
|
|
store i32 %tmp3, i32 addrspace(1)* %out
|
|
ret void
|
|
}
|