diff options
author | Juergen Ributzka <juergen@apple.com> | 2013-08-17 16:38:37 +0000 |
---|---|---|
committer | Juergen Ributzka <juergen@apple.com> | 2013-08-17 16:38:37 +0000 |
commit | b4c2fa244acb676b9d7e1edeb5cb41d80a54c4c8 (patch) | |
tree | fec74f771940e5db1490c5b8c55fcd9773f9c2dd | |
parent | 9ddb5fe2d79fefd06c4af7da8b61676ac59a1c79 (diff) | |
download | bcm5719-llvm-b4c2fa244acb676b9d7e1edeb5cb41d80a54c4c8.tar.gz bcm5719-llvm-b4c2fa244acb676b9d7e1edeb5cb41d80a54c4c8.zip |
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.
llvm-svn: 188608
-rw-r--r-- | llvm/include/llvm/IR/IntrinsicsX86.td | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/include/llvm/IR/IntrinsicsX86.td b/llvm/include/llvm/IR/IntrinsicsX86.td index c7675c2ffd9..f1728b7b40c 100644 --- a/llvm/include/llvm/IR/IntrinsicsX86.td +++ b/llvm/include/llvm/IR/IntrinsicsX86.td @@ -1635,7 +1635,6 @@ let TargetPrefix = "x86" in { // All intrinsics start with "llvm.x86.". GCCBuiltin<"__builtin_ia32_vbroadcastss_ps256">, Intrinsic<[llvm_v8f32_ty], [llvm_v4f32_ty], [IntrNoMem]>; def int_x86_avx2_vbroadcasti128 : - GCCBuiltin<"__builtin_ia32_vbroadcastsi256">, Intrinsic<[llvm_v4i64_ty], [llvm_ptr_ty], [IntrReadArgMem]>; def int_x86_avx2_pbroadcastb_128 : GCCBuiltin<"__builtin_ia32_pbroadcastb128">, |