stor-layout.c (variable_size): Call expand_expr with a NULL_RTX, not a NULL_PTR.
authorBrendan Kehoe <brendan@gcc.gnu.org>
Tue, 12 Jan 1993 23:29:42 +0000 (18:29 -0500)
committerBrendan Kehoe <brendan@gcc.gnu.org>
Tue, 12 Jan 1993 23:29:42 +0000 (18:29 -0500)
* stor-layout.c (variable_size): Call expand_expr with a NULL_RTX,
not a NULL_PTR.

From-SVN: r3208

gcc/stor-layout.c

index 3d1ce08..4438d0b 100644 (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);