From c958ca9fb64313ba27f83c12ed348d70b172baec Mon Sep 17 00:00:00 2001 From: Brendan Kehoe Date: Tue, 12 Jan 1993 18:29:42 -0500 Subject: [PATCH] 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 --- gcc/stor-layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.30.2