diff options
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_intr.c | 5 |
1 files 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(); } |