From: José Fonseca Date: Fri, 17 Feb 2012 17:22:23 +0000 (+0000) Subject: gallivm: Initialize x86 disassembler on x86_64 too. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9be0f9b0e470bb7bc8672d161615c16fe5b026fd;p=mesa.git gallivm: Initialize x86 disassembler on x86_64 too. --- diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp index 7f4d227d5eb..43aaf64a64e 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp @@ -207,7 +207,7 @@ lp_disassemble(const void* func) #if HAVE_LLVM >= 0x0208 InitializeNativeTargetAsmPrinter(); -#elif defined(PIPE_ARCH_X86) +#elif defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64) LLVMInitializeX86AsmPrinter(); #elif defined(PIPE_ARCH_ARM) LLVMInitializeARMAsmPrinter(); @@ -215,7 +215,7 @@ lp_disassemble(const void* func) LLVMInitializePowerPCAsmPrinter(); #endif -#if defined(PIPE_ARCH_X86) +#if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64) LLVMInitializeX86Disassembler(); #elif defined(PIPE_ARCH_ARM) LLVMInitializeARMDisassembler();