From c27e58c10940a6442705a4399c5100c82c122a6e Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Sun, 13 Mar 2011 19:49:21 +0000 Subject: gallivm: Fix build with llvm 2.6 on 32bit platforms --- src/gallium/auxiliary/gallivm/lp_bld_debug.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/gallium') diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp index 49388aadcc..bb2c82fe0e 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp @@ -111,6 +111,7 @@ lp_debug_dump_value(LLVMValueRef value) } +#if HAVE_LLVM >= 0x0207 /* * MemoryObject wrapper around a buffer of memory, to be used by MC * disassembler. @@ -145,6 +146,7 @@ public: return 0; } }; +#endif /* HAVE_LLVM >= 0x0207 */ /* @@ -348,8 +350,8 @@ lp_disassemble(const void* func) } debug_printf("\n"); -#else +#else /* HAVE_LLVM < 0x0207 */ (void)func; -#endif +#endif /* HAVE_LLVM < 0x0207 */ } -- cgit v1.2.3