diff options
author | Bernd Schmidt <bernds@cygnus.co.uk> | 1999-12-20 13:18:17 +0000 |
---|---|---|
committer | Bernd Schmidt <crux@gcc.gnu.org> | 1999-12-20 13:18:17 +0000 |
commit | 01d939e8fb624ea88487fd41ce93c238a5eb870a (patch) | |
tree | ef38c36222ccc381ac63f61190043f19cbf2124f /gcc/stor-layout.c | |
parent | 239a0f5ba54e5a19c4445835429ce113a68bebde (diff) | |
download | gcc-01d939e8fb624ea88487fd41ce93c238a5eb870a.zip gcc-01d939e8fb624ea88487fd41ce93c238a5eb870a.tar.gz gcc-01d939e8fb624ea88487fd41ce93c238a5eb870a.tar.bz2 |
current_function -> cfun
From-SVN: r31033
Diffstat (limited to 'gcc/stor-layout.c')
-rw-r--r-- | gcc/stor-layout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 4fa645a..cbc8672 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -123,8 +123,8 @@ variable_size (size) Also, we would like to pass const0_rtx here, but don't have it. */ expand_expr (size, expand_expr (integer_zero_node, NULL_PTR, VOIDmode, 0), VOIDmode, 0); - else if (current_function != 0 - && current_function->x_dont_save_pending_sizes_p) + else if (cfun != 0 + && cfun->x_dont_save_pending_sizes_p) /* The front-end doesn't want us to keep a list of the expressions that determine sizes for variable size objects. */ ; |