diff options
author | Jason Merrill <jason@yorick.cygnus.com> | 1998-10-23 02:18:53 +0000 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 1998-10-22 22:18:53 -0400 |
commit | fdc46fbe659f77dbcf016a5afb8d08652801c52b (patch) | |
tree | 83545746e3ad14e4a0e2b45f443e0abcddba6ee8 /gcc/function.h | |
parent | 5581627cef0a73759464baf4a13c6158da3622af (diff) | |
download | gcc-fdc46fbe659f77dbcf016a5afb8d08652801c52b.zip gcc-fdc46fbe659f77dbcf016a5afb8d08652801c52b.tar.gz gcc-fdc46fbe659f77dbcf016a5afb8d08652801c52b.tar.bz2 |
expr.c (pending_chain): Move up.
* expr.c (pending_chain): Move up.
(save_expr_status): Do save pending_chain.
(restore_expr_status): And restore it.
* function.h (struct function): Add pending_chain.
From-SVN: r23241
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/function.h b/gcc/function.h index 014ed13..d5e6cd0 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -146,6 +146,7 @@ struct function rtx ehc; /* For expr.c. */ + rtx pending_chain; int pending_stack_adjust; int inhibit_defer_pop; rtx saveregs_value; |