mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-12 15:05:06 +00:00
57d6a5e491
- Duplicate some store patterns to their AVX forms! - Catched a bug while restricting the patterns subtarget, fix it and update a testcase to check it properly git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138851 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
292 B
LLVM
11 lines
292 B
LLVM
; RUN: llc < %s -march=x86 -mattr=+sse,-sse2 | FileCheck %s
|
|
; PR2484
|
|
|
|
define <4 x float> @f4523(<4 x float> %a,<4 x float> %b) nounwind {
|
|
entry:
|
|
; CHECK: shufps $-28, %xmm
|
|
%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
|
|
}
|