From: Richard Stallman Date: Wed, 13 Jan 1993 04:25:24 +0000 (+0000) Subject: (variable_size): Change back to NULL_PTR. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=607207cf7d7ffd78d52d711beb1033e1e292bcf8;p=gcc.git (variable_size): Change back to NULL_PTR. From-SVN: r3216 --- 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);