summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/vshift_split.ll
blob: f05921f05dc59e5f3a640fe7a68272a5140cad24 (plain)
1
2
3
4
5
6
7
8
; RUN: llc < %s -march=arm -mattr=-neon

; Example that requires splitting and expanding a vector shift.
define <2 x i64> @update(<2 x i64> %val) nounwind readnone {
entry:
	%shr = lshr <2 x i64> %val, < i64 2, i64 2 >		; <<2 x i64>> [#uses=1]
	ret <2 x i64> %shr
}