diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp index f44749d..b685c08 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp @@ -186,7 +186,11 @@ lp_disassemble(const void* func) * Initialize all used objects. */ +#if HAVE_LLVM >= 0x0301 + std::string Triple = sys::getDefaultTargetTriple(); +#else std::string Triple = sys::getHostTriple(); +#endif std::string Error; const Target *T = TargetRegistry::lookupTarget(Triple, Error);