mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
b96a393b09
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192266 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
508 B
LLVM
14 lines
508 B
LLVM
; RUN: llc < %s -march=x86 -mattr=+sse2,-avx | grep -i EDI
|
|
; RUN: llc < %s -march=x86-64 -mattr=+sse2,-avx | grep -i RDI
|
|
; RUN: llc < %s -march=x86 -mattr=+avx | grep -i EDI
|
|
; RUN: llc < %s -march=x86-64 -mattr=+avx | grep -i RDI
|
|
; rdar://6573467
|
|
|
|
define void @test(<16 x i8> %a, <16 x i8> %b, i32 %dummy, i8* %c) nounwind {
|
|
entry:
|
|
tail call void @llvm.x86.sse2.maskmov.dqu( <16 x i8> %a, <16 x i8> %b, i8* %c )
|
|
ret void
|
|
}
|
|
|
|
declare void @llvm.x86.sse2.maskmov.dqu(<16 x i8>, <16 x i8>, i8*) nounwind
|