[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git] / test / CodeGen / X86 / vshift_split2.ll
blobe07bfefcaeea0a7bca14d6e4fa8fc75c01cc32ba
1 ; RUN: llc < %s -mtriple=i686-- -mcpu=yonah
3 ; Legalization example that requires splitting a large vector into smaller pieces.
5 define void @update(<8 x i32> %val, <8 x i32>* %dst) nounwind {
6 entry:
7         %shl = shl <8 x i32> %val, < i32 2, i32 2, i32 2, i32 2, i32 4, i32 4, i32 4, i32 4 >
8         %shr = ashr <8 x i32> %val, < i32 2, i32 2, i32 2, i32 2, i32 4, i32 4, i32 4, i32 4 >
9         store <8 x i32> %shr, <8 x i32>* %dst
10         ret void