Module: Mesa Branch: master Commit: b8ee45ebdc2408f50bc0fdb4525ab4f16ffe36e3 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=b8ee45ebdc2408f50bc0fdb4525ab4f16ffe36e3
Author: Bas Nieuwenhuizen <[email protected]> Date: Sun Jan 29 17:03:25 2017 +0100 llvmpipe: Use LLVMDumpModule, not DumpModule. Forgot the prefix ... Fixes: 0fca80b3db64dc1d004f78e22b9de86a07e9de96 Signed-off-by: Bas Nieuwenhuizen <[email protected]> --- src/gallium/drivers/llvmpipe/lp_jit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/llvmpipe/lp_jit.c b/src/gallium/drivers/llvmpipe/lp_jit.c index bb2b87f..a2762f3 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 } } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
