diff options
author | ojab <[email protected]> | 2012-01-31 11:43:37 +0400 |
---|---|---|
committer | José Fonseca <[email protected]> | 2012-01-31 08:11:24 +0000 |
commit | 97329efc5fab01b105015773009a1f17bc6e1136 (patch) | |
tree | 01c842ba69ddc793e0ed1c1a8e335d584f6c805b /src/gallium/auxiliary/gallivm | |
parent | 5920f18faefa34705efd8315241d5b48a8e61d90 (diff) |
Initialize only native LLVM Disassembler.
Signed-off-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/gallivm')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_debug.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp index a50a51d7d26..33881adf18b 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp @@ -203,7 +203,11 @@ lp_disassemble(const void* func) InitializeAllAsmPrinters(); #endif - InitializeAllDisassemblers(); +#if LLVM_NATIVE_ARCH == X86 + LLVMInitializeX86Disassembler(); +#elif LLVM_NATIVE_ARCH == ARM + LLVMInitializeARMDisassembler(); +#endif #if HAVE_LLVM >= 0x0300 OwningPtr<const MCAsmInfo> AsmInfo(T->createMCAsmInfo(Triple)); |