diff options
author | ojab <[email protected]> | 2012-02-01 10:00:10 +0400 |
---|---|---|
committer | José Fonseca <[email protected]> | 2012-02-02 09:04:10 +0000 |
commit | db312b62f2237ea5fd5a98f04550b862c116a392 (patch) | |
tree | f69fedd42ab98fb173dc7e26ed202558a644d9dc /src/gallium/auxiliary | |
parent | 54fd495c41d39a228ca87de9c8f7ebf4a06cd740 (diff) |
gallivm: Fix LLVM-2.7 build.
Signed-off-by: José Fonseca <[email protected]>
Tested-by: Vinson Lee <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_debug.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp index 33881adf18b..be8d7884bca 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp @@ -199,13 +199,15 @@ lp_disassemble(const void* func) #if HAVE_LLVM >= 0x0208 InitializeNativeTargetAsmPrinter(); -#else - InitializeAllAsmPrinters(); +#elif LLVM_NATIVE_ARCH == X86Target + LLVMInitializeX86AsmPrinter(); +#elif LLVM_NATIVE_ARCH == ARMTarget + LLVMInitializeARMAsmPrinter(); #endif -#if LLVM_NATIVE_ARCH == X86 +#if (LLVM_NATIVE_ARCH == X86 || LLVM_NATIVE_ARCH == X86Target) LLVMInitializeX86Disassembler(); -#elif LLVM_NATIVE_ARCH == ARM +#elif (LLVM_NATIVE_ARCH == ARM || LLVM_NATIVE_ARCH == ARMTarget) LLVMInitializeARMDisassembler(); #endif |