From: Brendan Kehoe Date: Tue, 12 Jan 1993 23:29:42 +0000 (-0500) Subject: stor-layout.c (variable_size): Call expand_expr with a NULL_RTX, not a NULL_PTR. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c958ca9fb64313ba27f83c12ed348d70b172baec;p=gcc.git 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 --- diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 3d1ce08e26c..4438d0b4689 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -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);