signed_const isn't needed any more

This commit is contained in:
Bill Currie 2001-07-27 21:01:01 +00:00
parent 89da47335b
commit bfb8eff2f0

View file

@ -65,7 +65,7 @@ typedef struct {
%type <type> type maybe_func
%type <def> param param_list def_item def_list def_name
%type <expr> signed_const const expr arg_list
%type <expr> const expr arg_list
%type <expr> statement statements statement_block
%type <function> begin_function
@ -473,14 +473,6 @@ arg_list
}
;
signed_const
: const
| '-' signed_const
{
$$ = unary_expr ('-', $2);
}
;
const
: FLOAT_VAL
{