[LTO] Remove extraneous output
authorTeresa Johnson <tejohnson@google.com>
Mon, 29 Aug 2016 15:33:01 +0000 (15:33 +0000)
committerTeresa Johnson <tejohnson@google.com>
Mon, 29 Aug 2016 15:33:01 +0000 (15:33 +0000)
Remove some debugging output to stderr that snuck in with r279576.

llvm-svn: 279974

llvm/lib/LTO/LTOBackend.cpp

index 68b7c12..f5574c9 100644 (file)
@@ -151,7 +151,6 @@ static AddOutputFn getUncachedOutputWrapper(AddOutputFn &AddOutput,
     auto Output = AddOutput(Task);
     if (Output->isCachingEnabled() && Output->tryLoadFromCache(""))
       report_fatal_error("Cache hit without a valid key?");
-    errs() << Task << " == " << TaskId << "\n";
     assert(Task == TaskId && "Unexpexted TaskId mismatch");
     return Output;
   };