view test/CodeGen/X86/vshift_scalar.ll @ 33:e4204d083e25

LLVM 3.5
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Thu, 12 Dec 2013 14:32:10 +0900
parents 95c75e76d11b
children afa8332a0e37
line wrap: on
line source

; RUN: llc < %s

; Legalization test that requires scalarizing a vector.

define void @update(<1 x i32> %val, <1 x i32>* %dst) nounwind {
entry:
	%shl = shl <1 x i32> %val, < i32 2>
	%shr = ashr <1 x i32> %val, < i32 4>
	store <1 x i32> %shr, <1 x i32>* %dst
	ret void
}