Mesa (master): glcpp: Return NEWLINE token for newlines inside multi-line comments.

Kenneth Graunke kwg at kemper.freedesktop.org
Thu Oct 21 07:13:32 UTC 2010


Module: Mesa
Branch: master
Commit: bd55ba568b301d0f764cd1ca015e84e1ae932c8b
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=bd55ba568b301d0f764cd1ca015e84e1ae932c8b

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Wed Oct 20 21:51:03 2010 -0700

glcpp: Return NEWLINE token for newlines inside multi-line comments.

This is necessary for the main compiler to get correct line numbers.

---

 src/glsl/glcpp/glcpp-lex.l |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/glsl/glcpp/glcpp-lex.l b/src/glsl/glcpp/glcpp-lex.l
index 8eb84ed..e936854 100644
--- a/src/glsl/glcpp/glcpp-lex.l
+++ b/src/glsl/glcpp/glcpp-lex.l
@@ -82,9 +82,9 @@ HEXADECIMAL_INTEGER	0[xX][0-9a-fA-F]+[uU]?
 	/* Multi-line comments */
 "/*"                    { yy_push_state(COMMENT, yyscanner); }
 <COMMENT>[^*\n]*
-<COMMENT>[^*\n]*\n      { yylineno++; yycolumn = 0; }
+<COMMENT>[^*\n]*\n      { yylineno++; yycolumn = 0; return NEWLINE; }
 <COMMENT>"*"+[^*/\n]*
-<COMMENT>"*"+[^*/\n]*\n { yylineno++; yycolumn = 0; }
+<COMMENT>"*"+[^*/\n]*\n { yylineno++; yycolumn = 0; return NEWLINE; }
 <COMMENT>"*"+"/"        {
 	yy_pop_state(yyscanner);
 	if (yyextra->space_tokens)




More information about the mesa-commit mailing list