From: Brian Paul Date: Wed, 6 Aug 2008 22:29:40 +0000 (-0600) Subject: mesa: glsl: report 'Syntax Error' instead of 'Invalid external declaration' X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=35b9aedf7fc29ccc1d8c969b11eeb5eca57c5af2;p=mesa.git mesa: glsl: report 'Syntax Error' instead of 'Invalid external declaration' --- diff --git a/src/mesa/shader/slang/library/slang_shader.syn b/src/mesa/shader/slang/library/slang_shader.syn index 52a792ad179..4505758520a 100644 --- a/src/mesa/shader/slang/library/slang_shader.syn +++ b/src/mesa/shader/slang/library/slang_shader.syn @@ -242,7 +242,9 @@ .emtcode PARAMETER_ARRAY_NOT_PRESENT 0 .emtcode PARAMETER_ARRAY_PRESENT 1 -.errtext INVALID_EXTERNAL_DECLARATION "2001: Invalid external declaration." +/* INVALID_EXTERNAL_DECLARATION seems to be reported when there's */ +/* any syntax errors... */ +.errtext INVALID_EXTERNAL_DECLARATION "2001: Syntax error." .errtext INVALID_OPERATOR_OVERRIDE "2002: Invalid operator override." .errtext LBRACE_EXPECTED "2003: '{' expected but '$err_token$' found." .errtext LPAREN_EXPECTED "2004: '(' expected but '$err_token$' found."