diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2011-04-23 10:47:20 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2011-04-23 10:47:20 +0000 |
commit | 7980348fcf3a0f1da7352728493f00ff78852afb (patch) | |
tree | 3833cd408da9388c7cf152c8803ddf5b07ac16dd /clang/lib/Parse/ParseExpr.cpp | |
parent | 61fbf6283816f4d9b8539cdc17bc147ed596281e (diff) | |
download | bcm5719-llvm-7980348fcf3a0f1da7352728493f00ff78852afb.tar.gz bcm5719-llvm-7980348fcf3a0f1da7352728493f00ff78852afb.zip |
Sort the type traits in a few places where they weren't previously
sorted in order to prepare for adding some new ones.
llvm-svn: 130056
Diffstat (limited to 'clang/lib/Parse/ParseExpr.cpp')
-rw-r--r-- | clang/lib/Parse/ParseExpr.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/lib/Parse/ParseExpr.cpp b/clang/lib/Parse/ParseExpr.cpp index cf852f82e5c..1a3290a43db 100644 --- a/clang/lib/Parse/ParseExpr.cpp +++ b/clang/lib/Parse/ParseExpr.cpp @@ -983,14 +983,14 @@ ExprResult Parser::ParseCastExpression(bool isUnaryExpression, return move(Result); } - case tok::kw___is_pod: // [GNU] unary-type-trait + case tok::kw___is_abstract: // [GNU] unary-type-trait case tok::kw___is_class: - case tok::kw___is_enum: - case tok::kw___is_union: case tok::kw___is_empty: - case tok::kw___is_polymorphic: - case tok::kw___is_abstract: + case tok::kw___is_enum: case tok::kw___is_literal: + case tok::kw___is_pod: + case tok::kw___is_polymorphic: + case tok::kw___is_union: case tok::kw___has_trivial_constructor: case tok::kw___has_trivial_copy: case tok::kw___has_trivial_assign: |