aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/2010-11-17-DAGCombineShiftBug.ll
blob: b9cf35202353a4c1283c9fe677ceaf0e2a4f7f6b (plain)
1
2
3
4
5
6
7
8
; 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
}