diff options
author | Douglas Gregor <dgregor@apple.com> | 2008-11-06 16:32:23 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2008-11-06 16:32:23 +0000 |
commit | 2ad7ee9145080b7227d452c815fcbd0591d15f89 (patch) | |
tree | 6ffc90bc30ba5a56fb885b638fe92bf613e16d3e /clang/lib/Basic/IdentifierTable.cpp | |
parent | 2817338558506b364701bf65ff8137b013b3a31c (diff) | |
download | bcm5719-llvm-2ad7ee9145080b7227d452c815fcbd0591d15f89.tar.gz bcm5719-llvm-2ad7ee9145080b7227d452c815fcbd0591d15f89.zip |
Reclaim some bits in IdentifierInfo, for later use as overloaded operator names.
llvm-svn: 58806
Diffstat (limited to 'clang/lib/Basic/IdentifierTable.cpp')
-rw-r--r-- | clang/lib/Basic/IdentifierTable.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/Basic/IdentifierTable.cpp b/clang/lib/Basic/IdentifierTable.cpp index e650993bd04..8f0387e99e6 100644 --- a/clang/lib/Basic/IdentifierTable.cpp +++ b/clang/lib/Basic/IdentifierTable.cpp @@ -27,8 +27,7 @@ using namespace clang; IdentifierInfo::IdentifierInfo() { TokenID = tok::identifier; - ObjCID = tok::objc_not_keyword; - BuiltinID = 0; + ObjCOrBuiltinID = 0; HasMacro = false; IsExtension = false; IsPoisoned = false; |