summaryrefslogtreecommitdiffstats
path: root/include/clang/Sema/AttributeList.h
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-11-16 00:32:24 +0000
committerBob Wilson <bob.wilson@apple.com>2010-11-16 00:32:24 +0000
commit4211bb68cff1f310be280f66a59520548ef99d8f (patch)
tree04d0cdcfdec8316b6fc06bb7ae15087cbd9cebb3 /include/clang/Sema/AttributeList.h
parent231da7eb3dd13007e5e40fffe48998e5ef284e06 (diff)
Add support for "neon_vector_type" and "neon_polyvector_type" attributes
to create the special Neon vector types. These are intended to be used in Clang's version of <arm_neon.h> to define special Neon vector types that will be mangled according to ARM's ABI. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@119301 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Sema/AttributeList.h')
-rw-r--r--include/clang/Sema/AttributeList.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/Sema/AttributeList.h b/include/clang/Sema/AttributeList.h
index 1a4f38204b..577b7edc89 100644
--- a/include/clang/Sema/AttributeList.h
+++ b/include/clang/Sema/AttributeList.h
@@ -106,6 +106,8 @@ public:
AT_hiding,
AT_malloc,
AT_mode,
+ AT_neon_polyvector_type, // Clang-specific.
+ AT_neon_vector_type, // Clang-specific.
AT_naked,
AT_nodebug,
AT_noinline,