From: Eric Engestrom Date: Tue, 27 Aug 2019 22:54:52 +0000 (+0100) Subject: gallivm: replace `0x` version print with actual version string X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5aebe37b53fb18d2923a5810f8c5733b879dc477;p=mesa.git gallivm: replace `0x` version print with actual version string Signed-off-by: Eric Engestrom Acked-by: Michel Dänzer --- diff --git a/src/gallium/auxiliary/gallivm/lp_bld_intr.c b/src/gallium/auxiliary/gallivm/lp_bld_intr.c index 2f853457bf0..b7fab4fc123 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_intr.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_intr.c @@ -246,8 +246,9 @@ lp_build_intrinsic(LLVMBuilderRef builder, * than a call to address zero in the jited code). */ if (LLVMGetIntrinsicID(function) == 0) { - _debug_printf("llvm (version 0x%x) found no intrinsic for %s, going to crash...\n", - HAVE_LLVM, name); + _debug_printf("llvm (version " MESA_LLVM_VERSION_STRING + ") found no intrinsic for %s, going to crash...\n", + name); abort(); }