Commit 7c94ce7f by Jakub Jelinek Committed by Jakub Jelinek

c-typeck.c (process_init_element): Don't save_expr COMPOUND_LITERAL_EXPR if just…

c-typeck.c (process_init_element): Don't save_expr COMPOUND_LITERAL_EXPR if just its initializer will be used.

	* c-typeck.c (process_init_element): Don't save_expr
	COMPOUND_LITERAL_EXPR if just its initializer will be used.

	* gcc.dg/gnu89-init-1.c: Add new tests.

From-SVN: r48868
parent 9631a0e1
2002-01-15 Jakub Jelinek <jakub@redhat.com>
* c-typeck.c (process_init_element): Don't save_expr
COMPOUND_LITERAL_EXPR if just its initializer will be used.
2002-01-15 David Edelsohn <edelsohn@gnu.org> 2002-01-15 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.c (rs6000_output_function_epilogue): Do not * config/rs6000/rs6000.c (rs6000_output_function_epilogue): Do not
......
...@@ -6618,7 +6618,14 @@ process_init_element (value) ...@@ -6618,7 +6618,14 @@ process_init_element (value)
/* In the case of [LO ... HI] = VALUE, only evaluate VALUE once. */ /* In the case of [LO ... HI] = VALUE, only evaluate VALUE once. */
if (constructor_range_stack) if (constructor_range_stack)
{
/* If value is a compound literal and we'll be just using its
content, don't put it into a SAVE_EXPR. */
if (TREE_CODE (value) != COMPOUND_LITERAL_EXPR
|| !require_constant_value
|| flag_isoc99)
value = save_expr (value); value = save_expr (value);
}
while (1) while (1)
{ {
......
2002-01-15 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/gnu89-init-1.c: Add new tests.
2002-01-15 Andreas Jaeger <aj@suse.de> 2002-01-15 Andreas Jaeger <aj@suse.de>
* gcc.dg/i386-mmx-1.c: Also run on x86-64. * gcc.dg/i386-mmx-1.c: Also run on x86-64.
......
...@@ -28,6 +28,8 @@ struct C g[3] = { [2] = (struct C) { 13 }, [1] = (const struct C) { 12 } }; ...@@ -28,6 +28,8 @@ struct C g[3] = { [2] = (struct C) { 13 }, [1] = (const struct C) { 12 } };
struct D h = { .j = (struct C) { 15 }, .i = 14 }; struct D h = { .j = (struct C) { 15 }, .i = 14 };
struct D i[2] = { [1].j = (const struct C) { 17 }, struct D i[2] = { [1].j = (const struct C) { 17 },
[0] = { 0, (struct C) { 16 } } }; [0] = { 0, (struct C) { 16 } } };
struct C j[2][3] = { [0 ... 1] = { [0 ... 2] = (struct C) { 26 } } };
struct C k[3][2] = { [0 ... 2][0 ... 1] = (const struct C) { 27 } };
int main (void) int main (void)
{ {
...@@ -55,5 +57,13 @@ int main (void) ...@@ -55,5 +57,13 @@ int main (void)
abort (); abort ();
if (i[0].i || i[0].j.i != 16 || i[1].i || i[1].j.i != 17) if (i[0].i || i[0].j.i != 16 || i[1].i || i[1].j.i != 17)
abort (); abort ();
if (j[0][0].i != 26 || j[0][1].i != 26 || j[0][2].i != 26)
abort ();
if (j[1][0].i != 26 || j[1][1].i != 26 || j[1][2].i != 26)
abort ();
if (k[0][0].i != 27 || k[0][1].i != 27 || k[1][0].i != 27)
abort ();
if (k[1][1].i != 27 || k[2][0].i != 27 || k[2][1].i != 27)
abort ();
exit (0); exit (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