LTO: Document the Boolean argument from r218784

llvm-svn: 218907
This commit is contained in:
Duncan P. N. Exon Smith 2014-10-02 21:11:04 +00:00
parent fedbe6dc4e
commit 7b21c4bae7

View File

@ -558,5 +558,6 @@ LTOCodeGenerator::setDiagnosticHandler(lto_diagnostic_handler_t DiagHandler,
return Context.setDiagnosticHandler(nullptr, nullptr);
// Register the LTOCodeGenerator stub in the LLVMContext to forward the
// diagnostic to the external DiagHandler.
Context.setDiagnosticHandler(LTOCodeGenerator::DiagnosticHandler, this, true);
Context.setDiagnosticHandler(LTOCodeGenerator::DiagnosticHandler, this,
/* RespectFilters */ true);
}