From 6e711c33b468f9802e515d42017552a85d82e5a9 Mon Sep 17 00:00:00 2001 From: Teresa Johnson Date: Mon, 29 Aug 2016 15:33:01 +0000 Subject: [PATCH] [LTO] Remove extraneous output Remove some debugging output to stderr that snuck in with r279576. llvm-svn: 279974 --- llvm/lib/LTO/LTOBackend.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/llvm/lib/LTO/LTOBackend.cpp b/llvm/lib/LTO/LTOBackend.cpp index 68b7c12..f5574c9 100644 --- a/llvm/lib/LTO/LTOBackend.cpp +++ b/llvm/lib/LTO/LTOBackend.cpp @@ -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; }; -- 2.7.4