stor-layout.c (variable_size): Call expand_expr with a NULL_RTX, not a NULL_PTR.

* stor-layout.c (variable_size): Call expand_expr with a NULL_RTX,
	not a NULL_PTR.

From-SVN: r3208
This commit is contained in:
Brendan Kehoe 1993-01-12 18:29:42 -05:00
parent e992302c10
commit c958ca9fb6

View File

@ -86,7 +86,7 @@ variable_size (size)
}
if (immediate_size_expand)
expand_expr (size, NULL_PTR, VOIDmode, 0);
expand_expr (size, NULL_RTX, VOIDmode, 0);
else
pending_sizes = tree_cons (NULL_TREE, size, pending_sizes);