mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-31 16:02:52 +01:00
10 lines
260 B
LLVM
10 lines
260 B
LLVM
|
; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse,-sse2
|
||
|
; PR2484
|
||
|
|
||
|
define <4 x float> @f4523(<4 x float> %a,<4 x float> %b) nounwind {
|
||
|
entry:
|
||
|
%shuffle = shufflevector <4 x float> %a, <4 x float> %b, <4 x i32> <i32 4,i32
|
||
|
5,i32 2,i32 3>
|
||
|
ret <4 x float> %shuffle
|
||
|
}
|