Remove some old code.

This commit is contained in:
Bill Currie 2011-02-08 08:16:36 +09:00
parent d6b10c99aa
commit 7e2173f268

View file

@ -708,15 +708,7 @@ local_specifiers
: LOCAL specifiers { $$ = $2; }
| specifiers { $$ = $1; }
;
/*
param_scope
: / * empty * /
{
$$ = current_symtab;
current_symtab = new_symtab (current_symtab, stab_local);
}
;
*/
param_list
: param { $$ = $1; }
| param_list ',' { $<param>$ = $<param>1; } param { $$ = $4; }