mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 23:18:58 +00:00
ac6a87b06e
Summary: There are a number of files in the tree which have been accidentally checked in with DOS line endings. Convert these to native line endings. There are also a few files which have DOS line endings on purpose, and I have set the svn:eol-style property to 'CRLF' on those. Reviewers: joerg, aaron.ballman Subscribers: aaron.ballman, sanjoy, dsanders, llvm-commits Differential Revision: http://reviews.llvm.org/D15848 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256707 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
645 B
LLVM
19 lines
645 B
LLVM
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=knl -mattr=+avx512cd | FileCheck %s
|
|
|
|
define <16 x i32> @test_x86_vbroadcastmw_512(i16 %a0) {
|
|
; CHECK: test_x86_vbroadcastmw_512
|
|
; CHECK: vpbroadcastmw2d %k0, %zmm0
|
|
%res = call <16 x i32> @llvm.x86.avx512.broadcastmw.512(i16 %a0) ;
|
|
ret <16 x i32> %res
|
|
}
|
|
declare <16 x i32> @llvm.x86.avx512.broadcastmw.512(i16)
|
|
|
|
define <8 x i64> @test_x86_broadcastmb_512(i8 %a0) {
|
|
; CHECK: test_x86_broadcastmb_512
|
|
; CHECK: vpbroadcastmb2q %k0, %zmm0
|
|
%res = call <8 x i64> @llvm.x86.avx512.broadcastmb.512(i8 %a0) ;
|
|
ret <8 x i64> %res
|
|
}
|
|
declare <8 x i64> @llvm.x86.avx512.broadcastmb.512(i8)
|
|
|