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 | ad89ec013f5f9d99fc436723153f00123e9a8ebe (patch) | |
tree | 0d30271a46d8edb930a5d3e931b2829e6c0cba22 /clang/lib/Basic/IdentifierTable.cpp | |
parent | 66c6562e24f7fbaacd9f1e6531baed2b314376c2 (diff) | |
download | bcm5719-llvm-ad89ec013f5f9d99fc436723153f00123e9a8ebe.tar.gz bcm5719-llvm-ad89ec013f5f9d99fc436723153f00123e9a8ebe.zip |
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.
llvm-svn: 62675
Diffstat (limited to 'clang/lib/Basic/IdentifierTable.cpp')
-rw-r--r-- | clang/lib/Basic/IdentifierTable.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Basic/IdentifierTable.cpp b/clang/lib/Basic/IdentifierTable.cpp index d7ef915dab7..304c7a9b42f 100644 --- a/clang/lib/Basic/IdentifierTable.cpp +++ b/clang/lib/Basic/IdentifierTable.cpp @@ -32,6 +32,7 @@ IdentifierInfo::IdentifierInfo() { IsExtension = false; IsPoisoned = false; IsCPPOperatorKeyword = false; + NeedsHandleIdentifier = false; FETokenInfo = 0; Entry = 0; } |