Commit a73071bc by Richard Henderson Committed by Richard Henderson

* emit-rtl.c (gen_rtx): Zero '0' fields.

From-SVN: r65488
parent ca06cfe6
2003-04-11 Richard Henderson <rth@redhat.com>
* emit-rtl.c (gen_rtx): Zero '0' fields.
2003-04-11 Richard Henderson <rth@redhat.com>
PR c++/10202
* expr.c (expand_expr): Use COMPLETE_OR_UNBOUND_ARRAY_TYPE_P
not COMPLETE_TYPE_P for re-invoking layout_decl.
......
......@@ -755,7 +755,8 @@ gen_rtx VPARAMS ((enum rtx_code code, enum machine_mode mode, ...))
{
switch (*fmt++)
{
case '0': /* Unused field. */
case '0': /* Field with unknown use. Zero it. */
X0EXP (rt, 1) = NULL_RTX;
break;
case 'i': /* An integer? */
......
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