forked from OSchip/llvm-project
[CUDA] Added stubs for __nvvm_atom_add_*_d() builtins.
They show up in CUDA headers but are not currently supported by NVPTX back-end. Differential Revision: http://reviews.llvm.org/D11694 llvm-svn: 245502
This commit is contained in:
parent
1d0f1996df
commit
46db9e822c
|
@ -453,6 +453,9 @@ BUILTIN(__nvvm_atom_add_gen_ll, "LLiLLiD*LLi", "n")
|
|||
BUILTIN(__nvvm_atom_add_g_f, "ffD*1f", "n")
|
||||
BUILTIN(__nvvm_atom_add_s_f, "ffD*3f", "n")
|
||||
BUILTIN(__nvvm_atom_add_gen_f, "ffD*f", "n")
|
||||
BUILTIN(__nvvm_atom_add_g_d, "ddD*1d", "n")
|
||||
BUILTIN(__nvvm_atom_add_s_d, "ddD*3d", "n")
|
||||
BUILTIN(__nvvm_atom_add_gen_d, "ddD*d", "n")
|
||||
|
||||
BUILTIN(__nvvm_atom_sub_g_i, "iiD*1i", "n")
|
||||
BUILTIN(__nvvm_atom_sub_s_i, "iiD*3i", "n")
|
||||
|
|
Loading…
Reference in New Issue