Commit d739a3bc by Nathan Sidwell Committed by Nathan Sidwell

c-typeck.c (process_init_element): Detect excess elements in char array initializer.

	* c-typeck.c (process_init_element): Detect excess elements in
	char array initializer.

From-SVN: r27507
parent 8dae700b
Mon Jun 14 10:30:52 BST 1999 Nathan Sidwell <nathan@acm.org>
* c-typeck.c (process_init_element): Detect excess elements in
char array initializer.
1999-06-14 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* gcc.texi: Mention gcc 2.96 instead of egcs 1.00.
......
......@@ -6478,6 +6478,8 @@ process_init_element (value)
&& TREE_CODE (TREE_TYPE (constructor_type)) == INTEGER_TYPE
&& integer_zerop (constructor_unfilled_index))
{
if (constructor_stack->replacement_value)
error_init ("excess elements in char array initializer");
constructor_stack->replacement_value = value;
return;
}
......
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