aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBrendan Kehoe <brendan@gcc.gnu.org>1993-01-12 18:29:42 -0500
committerBrendan Kehoe <brendan@gcc.gnu.org>1993-01-12 18:29:42 -0500
commitc958ca9fb64313ba27f83c12ed348d70b172baec (patch)
tree659afed2697ce9b5387c389265d4487c63a6986f /gcc
parente992302c10dbb1f62c1d15b08a64f5d653d635e9 (diff)
downloadgcc-c958ca9fb64313ba27f83c12ed348d70b172baec.zip
gcc-c958ca9fb64313ba27f83c12ed348d70b172baec.tar.gz
gcc-c958ca9fb64313ba27f83c12ed348d70b172baec.tar.bz2
stor-layout.c (variable_size): Call expand_expr with a NULL_RTX, not a NULL_PTR.
* stor-layout.c (variable_size): Call expand_expr with a NULL_RTX, not a NULL_PTR. From-SVN: r3208
Diffstat (limited to 'gcc')
-rw-r--r--gcc/stor-layout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c
index 3d1ce08..4438d0b 100644
--- a/gcc/stor-layout.c
+++ b/gcc/stor-layout.c
@@ -86,7 +86,7 @@ variable_size (size)
}
if (immediate_size_expand)
- expand_expr (size, NULL_PTR, VOIDmode, 0);
+ expand_expr (size, NULL_RTX, VOIDmode, 0);
else
pending_sizes = tree_cons (NULL_TREE, size, pending_sizes);