Commit 1f6d0c60 by Andreas Krebbel Committed by Andreas Krebbel

c-parser.c (c_parser_binary_expression): Silence the uninitialized variable…

c-parser.c (c_parser_binary_expression): Silence the uninitialized variable warning emitted for binary_loc.

2008-10-17  Andreas Krebbel  <krebbel1@de.ibm.com>

	* c-parser.c (c_parser_binary_expression): Silence the
	uninitialized variable warning emitted for binary_loc.

From-SVN: r141193
parent 27caad2e
2008-10-17 Andreas Krebbel <krebbel1@de.ibm.com>
* c-parser.c (c_parser_binary_expression): Silence the
uninitialized variable warning emitted for binary_loc.
2008-10-16 Daniel Berlin <dberlin@dberlin.org>
* tree-ssa-pre.c (phi_translate_set): Add constants to phi
......
......@@ -4583,7 +4583,7 @@ c_parser_binary_expression (c_parser *parser, struct c_expr *after)
} stack[NUM_PRECS];
int sp;
/* Location of the binary operator. */
location_t binary_loc;
location_t binary_loc = UNKNOWN_LOCATION; /* Quiet warning. */
#define POP \
do { \
switch (stack[sp].op) \
......
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