From 607207cf7d7ffd78d52d711beb1033e1e292bcf8 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Wed, 13 Jan 1993 04:25:24 +0000 Subject: [PATCH] (variable_size): Change back to NULL_PTR. From-SVN: r3216 --- gcc/stor-layout.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 4438d0b4689..7ccbca82166 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -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); -- 2.30.2