diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-21 07:43:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-21 07:43:11 +0000 |
commit | 6a170eb3ea6d6319277becabef68eb1a26bf8766 (patch) | |
tree | c4d5ff1ef7320f4dca868a511358af6c79677105 /lib/Basic/IdentifierTable.cpp | |
parent | 53637654287a2658fa0c9f67b305795743720936 (diff) |
Add a bit to IdentifierInfo that acts as a simple predicate which
tells us whether Preprocessor::HandleIdentifier needs to be called.
Because this method is only rarely needed, this saves a call and a
bunch of random checks. This drops the time in HandleIdentifier
from 3.52ms to .98ms on cocoa.h on my machine.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62675 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/IdentifierTable.cpp')
-rw-r--r-- | lib/Basic/IdentifierTable.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Basic/IdentifierTable.cpp b/lib/Basic/IdentifierTable.cpp index d7ef915dab..304c7a9b42 100644 --- a/lib/Basic/IdentifierTable.cpp +++ b/lib/Basic/IdentifierTable.cpp @@ -32,6 +32,7 @@ IdentifierInfo::IdentifierInfo() { IsExtension = false; IsPoisoned = false; IsCPPOperatorKeyword = false; + NeedsHandleIdentifier = false; FETokenInfo = 0; Entry = 0; } |