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

From-SVN: r54321
This commit is contained in:
J"orn Rennecke 2002-06-06 20:08:13 +00:00 committed by Joern Rennecke
parent d7f8491b1c
commit 8a5d66c42f
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
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>
* Makefile.in (TEXI_GCCINSTALL_FILES): Define.

View File

@ -263,6 +263,7 @@ ITYPE {IWORD}({WS}{IWORD})*
"/*" { BEGIN(in_comment); }
\n { lexer_line.line++; }
{ID} |
"'"("\\".|[^\\])"'" |
[^"/\n] /* do nothing */
\"([^"\\]|\\.|\\\n)*\" { update_lineno (yytext, yyleng); }
"/"/[^*] /* do nothing */