From: Bas Nieuwenhuizen Date: Sun, 29 Jan 2017 16:03:25 +0000 (+0100) Subject: llvmpipe: Use LLVMDumpModule, not DumpModule. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b8ee45ebdc2408f50bc0fdb4525ab4f16ffe36e3;p=mesa.git llvmpipe: Use LLVMDumpModule, not DumpModule. Forgot the prefix ... Fixes: 0fca80b3db64dc1d004f78e22b9de86a07e9de96 Signed-off-by: Bas Nieuwenhuizen --- diff --git a/src/gallium/drivers/llvmpipe/lp_jit.c b/src/gallium/drivers/llvmpipe/lp_jit.c index bb2b87f862f..a2762f39a04 100644 --- a/src/gallium/drivers/llvmpipe/lp_jit.c +++ b/src/gallium/drivers/llvmpipe/lp_jit.c @@ -227,7 +227,7 @@ lp_jit_create_types(struct lp_fragment_shader_variant *lp) fprintf(stderr, "%s", str); LLVMDisposeMessage(str); #else - DumpModule(gallivm->module); + LLVMDumpModule(gallivm->module); #endif } }