Commit 5cb1bea4 by Jason Merrill

expr.c (expand_expr, [...]): Still check for missing CONSTRUCTOR element.

        * expr.c (expand_expr, case ARRAY_REF): Still check for missing
        CONSTRUCTOR element.

From-SVN: r32423
parent 96756199
2000-03-08 Jason Merrill <jason@casey.cygnus.com>
* expr.c (expand_expr, case ARRAY_REF): Still check for missing
CONSTRUCTOR element.
2000-03-08 Gavin Romig-Koch <gavin@cetus.cygnus.com> 2000-03-08 Gavin Romig-Koch <gavin@cetus.cygnus.com>
* config/mips/mips.c (mips_expand_prologue): If the last * mips.c (mips_expand_prologue): If the last
named argument is the vararg marker "va_list", treat it as named argument is the vararg marker "va_list", treat it as
an unnamed argument. an unnamed argument.
......
...@@ -6523,7 +6523,8 @@ expand_expr (exp, target, tmode, modifier) ...@@ -6523,7 +6523,8 @@ expand_expr (exp, target, tmode, modifier)
tree elem = CONSTRUCTOR_ELTS (init); tree elem = CONSTRUCTOR_ELTS (init);
for (elem = CONSTRUCTOR_ELTS (init); for (elem = CONSTRUCTOR_ELTS (init);
! tree_int_cst_equal (TREE_PURPOSE (elem), index); (elem
&& !tree_int_cst_equal (TREE_PURPOSE (elem), index));
elem = TREE_CHAIN (elem)) elem = TREE_CHAIN (elem))
; ;
......
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