Partially fix comment handling in preprocessor directives.
authorIan Romanick <ian.d.romanick@intel.com>
Wed, 7 Apr 2010 20:43:52 +0000 (13:43 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Wed, 7 Apr 2010 23:49:25 +0000 (16:49 -0700)
Multi-line /* */ comments are still broken.  I think this will wait to
be fixed until we have a real preprocessor.

glsl_lexer.lpp

index 8f3f121..672ff39 100644 (file)
@@ -61,6 +61,7 @@
 ^[ \t]*#[ \t]*extension                { BEGIN PP; return EXTENSION; }
 ^[ \t]*#[ \t]*line             { BEGIN PP; return LINE; }
 ^[ \t]*#[ \t]*pragma           { BEGIN PP; return PRAGMA; }
+<PP>\/\/[^\n]*                 { }
 <PP>:                          return COLON;
 <PP>[_a-zA-Z][_a-zA-Z0-9]*     {
                                   yylval->identifier = strdup(yytext);