diff options
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)); |