Commit c958ca9f by Brendan Kehoe

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
parent e992302c
......@@ -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);
......
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