Changes in src/Parser/lex.ll [4e9c7c1:72457b6]
- File:
-
- 1 edited
-
src/Parser/lex.ll (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/lex.ll
r4e9c7c1 r72457b6 10 10 * Created On : Sat Sep 22 08:58:10 2001 11 11 * Last Modified By : Peter A. Buhr 12 * Last Modified On : Thu Jul 27 21:46:06201713 * Update Count : 5 5012 * Last Modified On : Mon Jul 24 08:27:23 2017 13 * Update Count : 545 14 14 */ 15 15 16 16 %option yylineno 17 %option noyywrap18 17 %option nounput 19 18 … … 289 288 290 289 /* numeric constants */ 290 "0" { NUMERIC_RETURN(ZERO); } // CFA 291 "1" { NUMERIC_RETURN(ONE); } // CFA 291 292 {decimal_constant} { NUMERIC_RETURN(INTEGERconstant); } 292 293 {octal_constant} { NUMERIC_RETURN(INTEGERconstant); } … … 419 420 420 421 /* unknown characters */ 421 . { printf("unknown character(s):\"%s\" on line %d\n", yytext, yylineno); }422 . { printf("unknown character(s):\"%s\" on line %d\n", yytext, yylineno); } 422 423 423 424 %%
Note:
See TracChangeset
for help on using the changeset viewer.