mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
The vbroadcastsi256 intrinsic does not exactly resemble the GCC
builtin. The GCC builtin expects the arguments to be passed by val, whereas the LLVM intrinsic expects a pointer instead. This is related to PR 16581 and rdar:14747994. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188608 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a915b410df
commit
68af19cbb1
@ -1635,7 +1635,6 @@ let TargetPrefix = "x86" in { // All intrinsics start with "llvm.x86.".
|
|||||||
GCCBuiltin<"__builtin_ia32_vbroadcastss_ps256">,
|
GCCBuiltin<"__builtin_ia32_vbroadcastss_ps256">,
|
||||||
Intrinsic<[llvm_v8f32_ty], [llvm_v4f32_ty], [IntrNoMem]>;
|
Intrinsic<[llvm_v8f32_ty], [llvm_v4f32_ty], [IntrNoMem]>;
|
||||||
def int_x86_avx2_vbroadcasti128 :
|
def int_x86_avx2_vbroadcasti128 :
|
||||||
GCCBuiltin<"__builtin_ia32_vbroadcastsi256">,
|
|
||||||
Intrinsic<[llvm_v4i64_ty], [llvm_ptr_ty], [IntrReadArgMem]>;
|
Intrinsic<[llvm_v4i64_ty], [llvm_ptr_ty], [IntrReadArgMem]>;
|
||||||
def int_x86_avx2_pbroadcastb_128 :
|
def int_x86_avx2_pbroadcastb_128 :
|
||||||
GCCBuiltin<"__builtin_ia32_pbroadcastb128">,
|
GCCBuiltin<"__builtin_ia32_pbroadcastb128">,
|
||||||
|
Loading…
Reference in New Issue
Block a user