From 5aebe37b53fb18d2923a5810f8c5733b879dc477 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Tue, 27 Aug 2019 23:54:52 +0100 Subject: [PATCH] gallivm: replace `0x` version print with actual version string MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Eric Engestrom Acked-by: Michel Dänzer --- src/gallium/auxiliary/gallivm/lp_bld_intr.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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(); } -- 2.30.2