diff options
author | Sean Hunt <scshunt@csclub.uwaterloo.ca> | 2011-05-19 05:37:45 +0000 |
---|---|---|
committer | Sean Hunt <scshunt@csclub.uwaterloo.ca> | 2011-05-19 05:37:45 +0000 |
commit | db5d44b775c60166074acd184ca9f1981c10c2a7 (patch) | |
tree | c52212d75860727890b85255baa863089c41ddae /lib/Sema/DeclSpec.cpp | |
parent | 0ee33912f8ec3453856c8a32ed2c2e8007bed614 (diff) |
Implement __underlying_type for libc++.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131633 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/DeclSpec.cpp')
-rw-r--r-- | lib/Sema/DeclSpec.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Sema/DeclSpec.cpp b/lib/Sema/DeclSpec.cpp index 0f20d10b07..d6f8f91bbf 100644 --- a/lib/Sema/DeclSpec.cpp +++ b/lib/Sema/DeclSpec.cpp @@ -309,6 +309,7 @@ const char *DeclSpec::getSpecifierName(DeclSpec::TST T) { case DeclSpec::TST_typeofExpr: return "typeof"; case DeclSpec::TST_auto: return "auto"; case DeclSpec::TST_decltype: return "(decltype)"; + case DeclSpec::TST_underlying_type: return "__underlying_type"; case DeclSpec::TST_unknown_anytype: return "__unknown_anytype"; case DeclSpec::TST_error: return "(error)"; } |