Mesa (master): gallivm: Fix build with llvm-2.9.

Vinson Lee vlee at kemper.freedesktop.org
Tue Mar 29 00:50:41 UTC 2011


Module: Mesa
Branch: master
Commit: 92e29dc5b0474c073b0f05d60629fc6c3decfca4
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=92e29dc5b0474c073b0f05d60629fc6c3decfca4

Author: Vinson Lee <vlee at vmware.com>
Date:   Mon Mar 28 17:48:37 2011 -0700

gallivm: Fix build with llvm-2.9.

The build fix of commit 40ae214067673edbda79371969d1730b6194d83e does
not apply to llvm-2.9 but rather to llvm-3.0svn.

---

 src/gallium/auxiliary/gallivm/lp_bld_debug.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
index 76d63ce..0b724a3 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
+++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
@@ -209,12 +209,12 @@ lp_disassemble(const void* func)
    raw_debug_ostream Out;
    TargetMachine *TM = T->createTargetMachine(Triple, "");
 
-#if HAVE_LLVM >= 0x0209
+#if HAVE_LLVM >= 0x0300
    unsigned int AsmPrinterVariant = AsmInfo->getAssemblerDialect();
 #else
    int AsmPrinterVariant = AsmInfo->getAssemblerDialect();
 #endif
-#if HAVE_LLVM >= 0x0209
+#if HAVE_LLVM >= 0x0300
    OwningPtr<MCInstPrinter> Printer(
          T->createMCInstPrinter(*TM, AsmPrinterVariant, *AsmInfo));
 #elif HAVE_LLVM >= 0x0208




More information about the mesa-commit mailing list