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 | 5142af38ed0dd2f592cbfa00fa6e2e14dd6cc516 (patch) | |
tree | 3fa84f76c093680255aa0803b9ee5be0caae50c0 /lib/Basic/IdentifierTable.cpp | |
parent | d93f0ddba0965ded252e228134b30ce30e863fb0 (diff) |
Reclaim some bits in IdentifierInfo, for later use as overloaded operator names.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58806 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/IdentifierTable.cpp')
-rw-r--r-- | lib/Basic/IdentifierTable.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Basic/IdentifierTable.cpp b/lib/Basic/IdentifierTable.cpp index e650993bd0..8f0387e99e 100644 --- a/lib/Basic/IdentifierTable.cpp +++ b/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; |