From 4c831d97bf065ae5d0fcba80b28e8396dfda7f39 Mon Sep 17 00:00:00 2001 From: Quentin Colombet Date: Wed, 15 Jan 2014 22:04:35 +0000 Subject: [LTO] Add a hook to map LLVM diagnostics into the clients of LTO. Add a hook in the C API of LTO so that clients of the code generator can set their own handler for the LLVM diagnostics. The handler is defined like this: typedef void (*lto_diagnostic_handler_t)(lto_codegen_diagnostic_severity_t severity, const char *diag, void *ctxt) - severity says how bad this is. - diag is a string that contains the diagnostic message. - ctxt is the registered context for this handler. This hook is more general than the lto_get_error_message, since this function keeps only the latest message and can only be queried when something went wrong (no warning for instance). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199338 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/lto/lto.exports | 1 + 1 file changed, 1 insertion(+) (limited to 'tools/lto/lto.exports') diff --git a/tools/lto/lto.exports b/tools/lto/lto.exports index 46d0d74c82..c8f8ee873b 100644 --- a/tools/lto/lto.exports +++ b/tools/lto/lto.exports @@ -15,6 +15,7 @@ lto_module_is_object_file_for_target lto_module_is_object_file_in_memory lto_module_is_object_file_in_memory_for_target lto_module_dispose +lto_codegen_set_diagnostic_handler lto_codegen_add_module lto_codegen_add_must_preserve_symbol lto_codegen_compile -- cgit v1.2.3