diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-01-03 19:48:16 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-01-03 19:48:16 +0000 |
commit | 663b48f13b2d525760e0cd82d2695a2f3c9fb69f (patch) | |
tree | bace2be1a8ab3d9c2ebb59e039cc90adbc5740e6 /clang/lib/Basic/IdentifierTable.cpp | |
parent | 3c9707bd90a585239db5a1f118e62a1218b532f8 (diff) | |
download | llvm-663b48f13b2d525760e0cd82d2695a2f3c9fb69f.zip llvm-663b48f13b2d525760e0cd82d2695a2f3c9fb69f.tar.gz llvm-663b48f13b2d525760e0cd82d2695a2f3c9fb69f.tar.bz2 |
Re-uglify #public and #private to #__public_macro and #__private_macro.
llvm-svn: 147469
Diffstat (limited to 'clang/lib/Basic/IdentifierTable.cpp')
-rw-r--r-- | clang/lib/Basic/IdentifierTable.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/clang/lib/Basic/IdentifierTable.cpp b/clang/lib/Basic/IdentifierTable.cpp index 3da15bd..c191456 100644 --- a/clang/lib/Basic/IdentifierTable.cpp +++ b/clang/lib/Basic/IdentifierTable.cpp @@ -217,16 +217,18 @@ tok::PPKeywordKind IdentifierInfo::getPPKeywordID() const { CASE( 6, 'i', 'n', ifndef); CASE( 6, 'i', 'p', import); CASE( 6, 'p', 'a', pragma); - CASE( 6, 'p', 'b', public); CASE( 7, 'd', 'f', defined); CASE( 7, 'i', 'c', include); - CASE( 7, 'p', 'i', private); CASE( 7, 'w', 'r', warning); CASE( 8, 'u', 'a', unassert); CASE(12, 'i', 'c', include_next); + CASE(14, '_', 'p', __public_macro); + + CASE(15, '_', 'p', __private_macro); + CASE(16, '_', 'i', __include_macros); #undef CASE #undef HASH |