[LTO] Remove extraneous output

Remove some debugging output to stderr that snuck in with r279576.

llvm-svn: 279974
This commit is contained in:
Teresa Johnson 2016-08-29 15:33:01 +00:00
parent 25475bcc0c
commit 6e711c33b4
1 changed files with 0 additions and 1 deletions

View 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;
};