make to work with newer version of LLgen.
This commit is contained in:
parent
7c5553640e
commit
00a2314999
1 changed files with 7 additions and 9 deletions
|
@ -34,7 +34,13 @@ optim_description
|
||||||
}
|
}
|
||||||
separator SPACE* mode_definitions
|
separator SPACE* mode_definitions
|
||||||
separator SPACE* patterns
|
separator SPACE* patterns
|
||||||
separator user_routines
|
separator
|
||||||
|
{ register int c;
|
||||||
|
fprintf(genc, linedir, lineno, inpfile);
|
||||||
|
while ((c = getc(input)) != EOF) {
|
||||||
|
putc(c,genc);
|
||||||
|
}
|
||||||
|
}
|
||||||
;
|
;
|
||||||
|
|
||||||
parameter_line
|
parameter_line
|
||||||
|
@ -282,14 +288,6 @@ replacement (int *n;)
|
||||||
]
|
]
|
||||||
;
|
;
|
||||||
|
|
||||||
user_routines
|
|
||||||
{register c;} :
|
|
||||||
{ fprintf(genc, linedir, lineno, inpfile);
|
|
||||||
while ((c = getc(input)) != EOF) {
|
|
||||||
putc(c,genc);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
;
|
|
||||||
|
|
||||||
identifier
|
identifier
|
||||||
{ char *p = idbuf; } :
|
{ char *p = idbuf; } :
|
||||||
|
|
Loading…
Reference in a new issue