Commit 856442b6 by Richard Henderson Committed by Richard Henderson

* stor-layout.c (variable_size): Only put SAVE_EXPRs on pending_sizes.

From-SVN: r37570
parent 3d6f4d76
2000-11-19 Richard Henderson <rth@redhat.com>
* stor-layout.c (variable_size): Only put SAVE_EXPRs on pending_sizes.
2000-11-19 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* rs6000/rs6000.c (rs6000_encode_section_info): Fix string length
......
......@@ -139,7 +139,7 @@ variable_size (size)
/* The front-end doesn't want us to keep a list of the expressions
that determine sizes for variable size objects. */
;
else
else if (TREE_CODE (size) == SAVE_EXPR)
pending_sizes = tree_cons (NULL_TREE, size, pending_sizes);
return size;
......
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