aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-01-13 04:25:24 +0000
committerRichard Stallman <rms@gnu.org>1993-01-13 04:25:24 +0000
commit607207cf7d7ffd78d52d711beb1033e1e292bcf8 (patch)
treee7b115e239aade3cf0425330dfc01ccb1c991cbd /gcc
parenta3ec87a808991cb957be7d08687b93100f9fecb2 (diff)
downloadgcc-607207cf7d7ffd78d52d711beb1033e1e292bcf8.zip
gcc-607207cf7d7ffd78d52d711beb1033e1e292bcf8.tar.gz
gcc-607207cf7d7ffd78d52d711beb1033e1e292bcf8.tar.bz2
(variable_size): Change back to NULL_PTR.
From-SVN: r3216
Diffstat (limited to 'gcc')
-rw-r--r--gcc/stor-layout.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c
index 4438d0b..7ccbca8 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);