summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2018-11-29 15:45:05 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2018-11-29 15:45:05 +0000
commit184b170da56120eef5e13f518248ef6a9a02b8ac (patch)
treee7646c26f9116849d16f1eef15ae3d977dfd2f07 /include
parent8aa500e3488e555394c81237643f3dc244c9ba37 (diff)
downloadclang-184b170da56120eef5e13f518248ef6a9a02b8ac.tar.gz
Mark __builtin_shufflevector as using custom type checking
The custom handling seems to all be implemented already. This avoids regressions in a future patch when float vectors are ordinarily promoted to double vectors in variadic calls. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@347873 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/clang/Basic/Builtins.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/Builtins.def b/include/clang/Basic/Builtins.def
index 9b94c97ba4..7d8226def3 100644
--- a/include/clang/Basic/Builtins.def
+++ b/include/clang/Basic/Builtins.def
@@ -538,7 +538,7 @@ BUILTIN(__builtin_readcyclecounter, "ULLi", "n")
BUILTIN(__builtin_trap, "v", "nr")
BUILTIN(__builtin_debugtrap, "v", "n")
BUILTIN(__builtin_unreachable, "v", "nr")
-BUILTIN(__builtin_shufflevector, "v." , "nc")
+BUILTIN(__builtin_shufflevector, "v." , "nct")
BUILTIN(__builtin_convertvector, "v." , "nct")
BUILTIN(__builtin_alloca, "v*z" , "Fn")
BUILTIN(__builtin_alloca_with_align, "v*zIz", "Fn")