diff options
author | Richard Stallman <rms@gnu.org> | 1992-10-13 05:13:01 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-10-13 05:13:01 +0000 |
commit | a506307a2fa40b0d181a1316eac0c9a39f7a38bc (patch) | |
tree | 3e219a208f352285047a5ed792ffad26d4d21b19 | |
parent | 17d4d0e0327d8d8915ebc2632600ecf678de4056 (diff) | |
download | gcc-a506307a2fa40b0d181a1316eac0c9a39f7a38bc.zip gcc-a506307a2fa40b0d181a1316eac0c9a39f7a38bc.tar.gz gcc-a506307a2fa40b0d181a1316eac0c9a39f7a38bc.tar.bz2 |
(pop_function_context, push_function_context):
Call {save,restore}_varasm_status.
From-SVN: r2423
-rw-r--r-- | gcc/function.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/function.c b/gcc/function.c index 2d01888..4d347fc 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -432,6 +432,7 @@ push_function_context () init_emit (); save_expr_status (p); save_stmt_status (p); + save_varasm_status (p); } /* Restore the last saved context, at the end of a nested function. @@ -491,6 +492,7 @@ pop_function_context () restore_expr_status (p); restore_emit_status (p); restore_stmt_status (p); + restore_varasm_status (p); /* Finish doing put_var_into_stack for any of our variables which became addressable during the nested function. */ |