The pshufw instruction came about in MMX2 when SSE was introduced. Don't place
[oota-llvm.git] / test / Assembler / aggregate-return-single-value.ll
1 ; RUN: llvm-as < %s | llvm-dis
2
3 define { i32 } @fooa() nounwind {
4   ret i32 0
5 }
6 define { i32 } @foob() nounwind {
7   ret {i32}{ i32 0 }
8 }
9 define [1 x i32] @fooc() nounwind {
10   ret i32 0
11 }
12 define [1 x i32] @food() nounwind {
13   ret [1 x i32][ i32 0 ]
14 }