From 8a2ce5d32987f99185f40eb3085a8972291f8d5c Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Sat, 24 Nov 2012 16:59:10 +0000 Subject: libLTO: Add a utility method to initialize the disassemblers. Necessary to give disassembler users (like darwin's otool) a possibility to dlopen libLTO and still initialize the required LLVM bits. This used to go through libMCDisassembler but that's a gross layering violation, the MC layer can't pull in functions from the targets. Adding a function to libLTO is a bit of a hack but not worse than exposing other disassembler bits from libLTO. Fixes PR14362. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168545 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm-c/lto.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'include') diff --git a/include/llvm-c/lto.h b/include/llvm-c/lto.h index f43d365e3d..74915c0006 100644 --- a/include/llvm-c/lto.h +++ b/include/llvm-c/lto.h @@ -291,6 +291,13 @@ lto_codegen_compile_to_file(lto_code_gen_t cg, const char** name); extern void lto_codegen_debug_options(lto_code_gen_t cg, const char *); +/** + * Initializes LLVM disassemblers. + * FIXME: This doesn't really belong here. + */ +extern void +lto_initialize_disassembler(void); + #ifdef __cplusplus } #endif -- cgit v1.2.3