aboutsummaryrefslogtreecommitdiff
path: root/lib/Frontend/PCHReader.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-04-22 04:56:28 +0000
committerDouglas Gregor <dgregor@apple.com>2009-04-22 04:56:28 +0000
commit71dfdb9bc91b5d81b124e6091c903e4efd87149d (patch)
tree5a7b624c9c7c81167f2b2abea65982cbab5dc6ae /lib/Frontend/PCHReader.cpp
parentd4ae6c038ea8dd2faaadd1f9da725ec37b4f7ef9 (diff)
Reorganize built-in initialization to separate the creation of target builtins from marking IdentifierInfos as builtins. No functionality change
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69774 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHReader.cpp')
-rw-r--r--lib/Frontend/PCHReader.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Frontend/PCHReader.cpp b/lib/Frontend/PCHReader.cpp
index 6a6cd64120..7018b26c27 100644
--- a/lib/Frontend/PCHReader.cpp
+++ b/lib/Frontend/PCHReader.cpp
@@ -1762,6 +1762,9 @@ PCHReader::PCHReadResult PCHReader::ReadPCH(const std::string &FileName) {
if (Pos == IdTable->end())
continue;
+ fprintf(stderr, "Looked up pre-allocated IdentifierInfo \"%s\"\n",
+ II->getName());
+
// Dereferencing the iterator has the effect of populating the
// IdentifierInfo node with the various declarations it needs.
(void)*Pos;