From: Douglas Gregor Date: Wed, 22 Apr 2009 14:18:52 +0000 (+0000) Subject: Remove some debugging output from the PCH reader X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01f4fa2928b22f88fb91035b9f000087ad25003d;p=clang Remove some debugging output from the PCH reader git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69803 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Frontend/PCHReader.cpp b/lib/Frontend/PCHReader.cpp index 8e1118cb7f..031b71fbac 100644 --- a/lib/Frontend/PCHReader.cpp +++ b/lib/Frontend/PCHReader.cpp @@ -1803,9 +1803,6 @@ 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;