Handle __attribute__((annotate("string")))
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47451 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Parse/AttributeList.cpp b/Parse/AttributeList.cpp
index faa50eb..63d07b3 100644
--- a/Parse/AttributeList.cpp
+++ b/Parse/AttributeList.cpp
@@ -57,6 +57,9 @@
case 7:
if (!memcmp(Str, "aligned", 7)) return AT_aligned;
break;
+ case 8:
+ if (!memcmp(Str, "annotate", 8)) return AT_annotate;
+ break;
case 11:
if (!memcmp(Str, "vector_size", 11)) return AT_vector_size;
break;