diff options
author | Richard Stallman <rms@gnu.org> | 1993-01-13 04:25:24 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-01-13 04:25:24 +0000 |
commit | 607207cf7d7ffd78d52d711beb1033e1e292bcf8 (patch) | |
tree | e7b115e239aade3cf0425330dfc01ccb1c991cbd /gcc | |
parent | a3ec87a808991cb957be7d08687b93100f9fecb2 (diff) | |
download | gcc-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.c | 3 |
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); |