(variable_size): Change back to NULL_PTR.
authorRichard Stallman <rms@gnu.org>
Wed, 13 Jan 1993 04:25:24 +0000 (04:25 +0000)
committerRichard Stallman <rms@gnu.org>
Wed, 13 Jan 1993 04:25:24 +0000 (04:25 +0000)
From-SVN: r3216

gcc/stor-layout.c

index 4438d0b46896eb4ba0d696921600decb809c3cd4..7ccbca82166b50687c67aebf1df9f1c9c93a2a40 100644 (file)
@@ -86,7 +86,8 @@ variable_size (size)
     }
 
   if (immediate_size_expand)
-    expand_expr (size, NULL_RTX, VOIDmode, 0);
+    /* NULL_RTX is not defined; neither is the rtx type.  */
+    expand_expr (size, NULL_PTR, VOIDmode, 0);
   else
     pending_sizes = tree_cons (NULL_TREE, size, pending_sizes);