brintos

brintos / llvm-project-archived public Read only

0
0
Text · 284 B · fe19259 Raw
13 lines · plain
1; RUN: llc < %s2; REQUIRES: default_triple3 4; Legalization test that requires scalarizing a vector.5 6define void @update(<1 x i32> %val, ptr %dst) nounwind {7entry:8	%shl = shl <1 x i32> %val, < i32 2>9	%shr = ashr <1 x i32> %val, < i32 4>10	store <1 x i32> %shr, ptr %dst11	ret void12}13