diff options
author | Jie Zhang <jie.zhang@analog.com> | 2010-01-14 04:52:57 +0000 |
---|---|---|
committer | Jie Zhang <jie.zhang@analog.com> | 2010-01-14 04:52:57 +0000 |
commit | 62fb9fe1fcde9fd534fdc4f284257212804bb1fe (patch) | |
tree | 237b709bebe904ea94ffb84645eda1691e0e189c /gas/config/bfin-parse.y | |
parent | b521dfe453f0590a99375d060a1e0a6f2fa9afec (diff) | |
download | gdb-62fb9fe1fcde9fd534fdc4f284257212804bb1fe.zip gdb-62fb9fe1fcde9fd534fdc4f284257212804bb1fe.tar.gz gdb-62fb9fe1fcde9fd534fdc4f284257212804bb1fe.tar.bz2 |
* config/bfin-aux.h: Remove argument names in function
declarations.
* config/bfin-lex.l (parse_int): Fix shadowed variable name
warning.
* config/bfin-parse.y (value_match): Remove argument names
in declaration.
(notethat): Likewise.
(yyerror): Likewise.
Diffstat (limited to 'gas/config/bfin-parse.y')
-rw-r--r-- | gas/config/bfin-parse.y | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/config/bfin-parse.y b/gas/config/bfin-parse.y index 3112460..fa06f61 100644 --- a/gas/config/bfin-parse.y +++ b/gas/config/bfin-parse.y @@ -1,5 +1,5 @@ /* bfin-parse.y ADI Blackfin parser - Copyright 2005, 2006, 2007, 2008, 2009 + Copyright 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -152,7 +152,7 @@ (value_match (expr, 24, 0, 2, 1)) -static int value_match (Expr_Node *expr, int sz, int sign, int mul, int issigned); +static int value_match (Expr_Node *, int, int, int, int); extern FILE *errorf; extern INSTR_T insn; @@ -160,11 +160,11 @@ extern INSTR_T insn; static Expr_Node *binary (Expr_Op_Type, Expr_Node *, Expr_Node *); static Expr_Node *unary (Expr_Op_Type, Expr_Node *); -static void notethat (char *format, ...); +static void notethat (char *, ...); char *current_inputline; extern char *yytext; -int yyerror (char *msg); +int yyerror (char *); void error (char *format, ...) { |