Commit f67aab2c by Jeffrey A Law Committed by Jeff Law

c-common.c (check_format_info): Initialize length_char and fci to keep -Wall quiet.

        * c-common.c (check_format_info): Initialize length_char and
        fci to keep -Wall quiet.

From-SVN: r20627
parent 767f5b14
Sat Jun 20 00:36:16 1998 Jeffrey A Law (law@cygnus.com) Sat Jun 20 00:36:16 1998 Jeffrey A Law (law@cygnus.com)
* c-common.c (check_format_info): Initialize length_char and
fci to keep -Wall quiet.
* except.c (jumpif_rtx): Put declaration and definition * except.c (jumpif_rtx): Put declaration and definition
inside a suitable #ifdef. inside a suitable #ifdef.
(jumpifnot_rtx): Delete dead function. (jumpifnot_rtx): Delete dead function.
......
...@@ -1240,7 +1240,7 @@ check_format_info (info, params) ...@@ -1240,7 +1240,7 @@ check_format_info (info, params)
int i; int i;
int arg_num; int arg_num;
int suppressed, wide, precise; int suppressed, wide, precise;
int length_char; int length_char = 0;
int format_char; int format_char;
int format_length; int format_length;
tree format_tree; tree format_tree;
...@@ -1249,7 +1249,7 @@ check_format_info (info, params) ...@@ -1249,7 +1249,7 @@ check_format_info (info, params)
tree wanted_type; tree wanted_type;
tree first_fillin_param; tree first_fillin_param;
char *format_chars; char *format_chars;
format_char_info *fci; format_char_info *fci = NULL;
char flag_chars[8]; char flag_chars[8];
int has_operand_number = 0; int has_operand_number = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment