comparison test/CodeGen/ARM/2010-05-19-Shuffles.ll @ 95:afa8332a0e37 LLVM3.8

LLVM 3.8
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Tue, 13 Oct 2015 17:48:58 +0900
parents 95c75e76d11b
children
comparison
equal deleted inserted replaced
84:f3e34b893a5f 95:afa8332a0e37
12 <8 x i32> <i32 1, i32 2, i32 0, i32 5, i32 3, i32 6, i32 7, i32 4> 12 <8 x i32> <i32 1, i32 2, i32 0, i32 5, i32 3, i32 6, i32 7, i32 4>
13 ret <8 x i8> %y 13 ret <8 x i8> %y
14 } 14 }
15 15
16 define void @f3(<4 x i64>* %xp) nounwind { 16 define void @f3(<4 x i64>* %xp) nounwind {
17 %x = load <4 x i64>* %xp 17 %x = load <4 x i64>, <4 x i64>* %xp
18 %y = shufflevector <4 x i64> %x, <4 x i64> undef, <4 x i32> <i32 0, i32 3, i32 2, i32 1> 18 %y = shufflevector <4 x i64> %x, <4 x i64> undef, <4 x i32> <i32 0, i32 3, i32 2, i32 1>
19 store <4 x i64> %y, <4 x i64>* %xp 19 store <4 x i64> %y, <4 x i64>* %xp
20 ret void 20 ret void
21 } 21 }