libLTO: Add a utility method to initialize the disassemblers.
authorBenjamin Kramer <benny.kra@googlemail.com>
Sat, 24 Nov 2012 16:59:10 +0000 (16:59 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Sat, 24 Nov 2012 16:59:10 +0000 (16:59 +0000)
commit8a2ce5d32987f99185f40eb3085a8972291f8d5c
treea51c03d5a2dea4a357a4a3f59b2b688dee695e6e
parentd3022b894691017169ff0681c6bea18725330cd1
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
lib/MC/MCDisassembler/Disassembler.cpp
tools/lto/CMakeLists.txt
tools/lto/LTODisassembler.cpp [new file with mode: 0644]
tools/lto/lto.exports