summaryrefslogtreecommitdiffstats
path: root/include/clang/Sema/AttributeList.h
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2010-12-01 03:15:31 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2010-12-01 03:15:31 +0000
commitced7671c18e115ac3c3f54abfaaafcc6d33edc4c (patch)
tree2779f2f96e9ee79c82819dd6ec8abf8eff16bc67 /include/clang/Sema/AttributeList.h
parent895fcca55a6d52a71639f2472a6623ab2dd9f628 (diff)
Basic, Sema: add support for CUDA location attributes
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120545 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Sema/AttributeList.h')
-rw-r--r--include/clang/Sema/AttributeList.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/clang/Sema/AttributeList.h b/include/clang/Sema/AttributeList.h
index bdb756b329..bc1c2e29fb 100644
--- a/include/clang/Sema/AttributeList.h
+++ b/include/clang/Sema/AttributeList.h
@@ -92,9 +92,11 @@ public:
AT_cdecl,
AT_cleanup,
AT_const,
+ AT_constant,
AT_constructor,
AT_deprecated,
AT_destructor,
+ AT_device,
AT_dllexport,
AT_dllimport,
AT_ext_vector_type,
@@ -102,8 +104,10 @@ public:
AT_final,
AT_format,
AT_format_arg,
+ AT_global,
AT_gnu_inline,
AT_hiding,
+ AT_host,
AT_malloc,
AT_may_alias,
AT_mode,
@@ -134,6 +138,7 @@ public:
AT_regparm,
AT_section,
AT_sentinel,
+ AT_shared,
AT_stdcall,
AT_thiscall,
AT_transparent_union,