Commit 8a5d66c4 by J"orn Rennecke Committed by Joern Rennecke

* gengtype-lex.l (INITIAL): New rule for "'"("\\".|[^\\])"'".

From-SVN: r54321
parent d7f8491b
Thu Jun 6 21:06:25 2002 J"orn Rennecke <joern.rennecke@superh.com>
* gengtype-lex.l (INITIAL): New rule for "'"("\\".|[^\\])"'".
2002-06-06 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 2002-06-06 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* Makefile.in (TEXI_GCCINSTALL_FILES): Define. * Makefile.in (TEXI_GCCINSTALL_FILES): Define.
......
...@@ -263,6 +263,7 @@ ITYPE {IWORD}({WS}{IWORD})* ...@@ -263,6 +263,7 @@ ITYPE {IWORD}({WS}{IWORD})*
"/*" { BEGIN(in_comment); } "/*" { BEGIN(in_comment); }
\n { lexer_line.line++; } \n { lexer_line.line++; }
{ID} | {ID} |
"'"("\\".|[^\\])"'" |
[^"/\n] /* do nothing */ [^"/\n] /* do nothing */
\"([^"\\]|\\.|\\\n)*\" { update_lineno (yytext, yyleng); } \"([^"\\]|\\.|\\\n)*\" { update_lineno (yytext, yyleng); }
"/"/[^*] /* do nothing */ "/"/[^*] /* do nothing */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment