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 8e1118c..031b71f 100644
--- a/lib/Frontend/PCHReader.cpp
+++ b/lib/Frontend/PCHReader.cpp
@@ -1803,9 +1803,6 @@
     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;