mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 01:34:32 +00:00
9684a7c128
Added test case. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119749 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
287 B
LLVM
9 lines
287 B
LLVM
; RUN: llc < %s -march=arm -mattr=+neon
|
|
define void @lshrIllegalType(<8 x i32>* %A) nounwind {
|
|
%tmp1 = load <8 x i32>* %A
|
|
%tmp2 = lshr <8 x i32> %tmp1, < i32 3, i32 3, i32 3, i32 3, i32 3, i32 3, i32 3, i32 3>
|
|
store <8 x i32> %tmp2, <8 x i32>* %A
|
|
ret void
|
|
}
|
|
|