diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-05-02 16:50:46 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-05-02 16:50:46 +0000 |
commit | 55c28b7c66d39ab6b670aff5f95cad9d15dc7adf (patch) | |
tree | f9d588f38ec397b2b630a14c018ddd7003dbfc29 | |
parent | 529a9bde677932e3d0ddaeb835235d0f57e37936 (diff) |
Lexicographically order enum declarations in AttributeList::Kind.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50577 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Parse/AttributeList.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/include/clang/Parse/AttributeList.h b/include/clang/Parse/AttributeList.h index 418dc00ac9..6453679241 100644 --- a/include/clang/Parse/AttributeList.h +++ b/include/clang/Parse/AttributeList.h @@ -41,31 +41,31 @@ public: Action::ExprTy **args, unsigned numargs, AttributeList *Next); ~AttributeList(); - enum Kind { - UnknownAttribute, - AT_vector_size, - AT_ext_vector_type, + enum Kind { // Please keep this list alphabetized. AT_address_space, AT_aligned, - AT_packed, AT_annotate, - AT_noreturn, AT_deprecated, - AT_unused, - AT_format, - AT_nonnull, - AT_malloc, - AT_pure, - AT_weak, AT_dllimport, AT_dllexport, - AT_visibility, + AT_ext_vector_type, AT_fastcall, - AT_stdcall, - AT_nothrow, + AT_format, + AT_malloc, AT_noinline, + AT_nonnull, + AT_noreturn, + AT_nothrow, + AT_packed, + AT_pure, + AT_stdcall, AT_transparent_union, - AT_warn_unused_result + AT_unused, + AT_vector_size, + AT_visibility, + AT_warn_unused_result, + AT_weak, + UnknownAttribute }; IdentifierInfo *getName() const { return AttrName; } |