From: Marek Olšák Date: Sun, 7 Mar 2010 00:12:57 +0000 (+0100) Subject: r300g: abort if FS compilation fails on non-debug builds X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6f4a19ca562ccd7e4bc2f7ea32263391abaa16bd;p=mesa.git r300g: abort if FS compilation fails on non-debug builds --- diff --git a/src/gallium/drivers/r300/r300_fs.c b/src/gallium/drivers/r300/r300_fs.c index 3c2625269b8..9e71e61c303 100644 --- a/src/gallium/drivers/r300/r300_fs.c +++ b/src/gallium/drivers/r300/r300_fs.c @@ -207,6 +207,7 @@ static void r300_translate_fragment_shader( DBG(r300, DBG_FP, "r300: Error compiling fragment program: %s\n", compiler.Base.ErrorMsg); assert(0); + abort(); } /* And, finally... */