Commit 9dfcc8db by Bruno Haible Committed by Jeff Law

c-typeck.c (pop_init_level): Warn about implicit zero initialization of struct members.

        * c-typeck.c (pop_init_level): Warn about implicit zero initialization
        of struct members.

From-SVN: r20614
parent b1526016
Fri Jun 19 23:22:42 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de>
* c-typeck.c (pop_init_level): Warn about implicit zero initialization
of struct members.
Fri Jun 19 23:06:33 1998 Jason Merrill <jason@yorick.cygnus.com>
* varasm.c (assemble_start_function): Add weak_global_object_name.
......
......@@ -5619,6 +5619,17 @@ pop_init_level (implicit)
if (constructor_type != 0)
size = int_size_in_bytes (constructor_type);
/* Warn when some struct elements are implicitly initialized to zero. */
if (extra_warnings
&& constructor_type
&& TREE_CODE (constructor_type) == RECORD_TYPE
&& constructor_unfilled_fields)
{
push_member_name (constructor_unfilled_fields);
warning_init ("missing initializer%s", " for `%s'", NULL);
RESTORE_SPELLING_DEPTH (constructor_depth);
}
/* Now output all pending elements. */
output_pending_init_elements (1);
......
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