diff options
author | Mark Mitchell <mark@codesourcery.com> | 2003-03-24 08:31:36 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2003-03-24 08:31:36 +0000 |
commit | f29a2bd17dbd3bcd89fabb4af8e9c5aa7dd8d223 (patch) | |
tree | 85eda9fd606f02112ed55c3f9d9703201269055d /gcc/cp | |
parent | ffe4ebba87d78d4da242adb6e95d2976bd796d91 (diff) | |
download | gcc-f29a2bd17dbd3bcd89fabb4af8e9c5aa7dd8d223.zip gcc-f29a2bd17dbd3bcd89fabb4af8e9c5aa7dd8d223.tar.gz gcc-f29a2bd17dbd3bcd89fabb4af8e9c5aa7dd8d223.tar.bz2 |
re PR c++/7086 (compile time regression)
PR c++/7086
* c-typeck.c (c_mark_addressable): Adjust calls to
put_var_into_stack.
* expr.c (expand_expr): Likewise.
* function.c (put_var_into_stack): Add rescan parameter. Do not
call fixup_var_refs when rescan is false.
(gen_mem_addressof): Likewise.
(assign_parms): Adjust calls to put_var_into_stack.
(setjmp_protect): Likewise.
(setjmp_protect_args): Likewise.
* rtl.h (gen_mem_addressof): Change prototype.
* stmt.c (expand_decl): Adjust calls to put_var_into_stack.
* tree.h (put_var_into_stack): Change prototype.
PR c++/7086
* utils2.c: Adjust calls to put_var_into_stack.
PR c++/7086
* semantics.c (genrtl_named_return_value): Adjust calls to
put_var_into_stack.
* typeck.c (cxx_mark_addressable): Likewise.
PR c++/7086
* com.c (ffecom_sym_transform_): Adjust calls to
put_var_into_stack.
(ffe_mark_addressable): Likewise.
From-SVN: r64781
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/typeck.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index ecc9bda..68c1716 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2003-03-23 Mark Mitchell <mark@codesourcery.com> + + PR c++/7086 + * typeck.c (cxx_mark_addressable): Likewise. + 2003-03-22 Nathan Sidwell <nathan@codesourcery.com> PR c++/9978, c++/9708 diff --git a/gcc/cp/typeck.c b/gcc/cp/typeck.c index 142b128..45d528f 100644 --- a/gcc/cp/typeck.c +++ b/gcc/cp/typeck.c @@ -4744,7 +4744,7 @@ cxx_mark_addressable (exp) warning ("address requested for `%D', which is declared `register'", x); TREE_ADDRESSABLE (x) = 1; - put_var_into_stack (x); + put_var_into_stack (x, /*rescan=*/true); return true; case FUNCTION_DECL: |