diff options
author | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2012-10-02 10:00:32 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2012-10-02 10:00:32 +0000 |
commit | 0f1e88429a98791cd8c5b8d80703fc5f04a80b23 (patch) | |
tree | 7f56c0d30fa7499cd3ec678e78aedbc875ce2c20 /gcc/tree-nested.c | |
parent | 70a6aea0adc11ad0562badf470857b2a615cabba (diff) | |
download | gcc-0f1e88429a98791cd8c5b8d80703fc5f04a80b23.zip gcc-0f1e88429a98791cd8c5b8d80703fc5f04a80b23.tar.gz gcc-0f1e88429a98791cd8c5b8d80703fc5f04a80b23.tar.bz2 |
tree.h (DECL_NONLOCAL_FRAME): New macro.
* tree.h (DECL_NONLOCAL_FRAME): New macro.
* tree-nested.c (get_frame_type): Set DECL_NONLOCAL_FRAME.
* tree-streamer-in.c (unpack_ts_decl_common_value_fields): Stream in
DECL_NONLOCAL_FRAME flag.
* tree-streamer-out.c (pack_ts_decl_common_value_fields): Stream out
DECL_NONLOCAL_FRAME flag.
From-SVN: r191970
Diffstat (limited to 'gcc/tree-nested.c')
-rw-r--r-- | gcc/tree-nested.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-nested.c b/gcc/tree-nested.c index 0b99803..b4d8688 100644 --- a/gcc/tree-nested.c +++ b/gcc/tree-nested.c @@ -235,6 +235,7 @@ get_frame_type (struct nesting_info *info) info->frame_type = type; info->frame_decl = create_tmp_var_for (info, type, "FRAME"); + DECL_NONLOCAL_FRAME (info->frame_decl) = 1; /* ??? Always make it addressable for now, since it is meant to be pointed to by the static chain pointer. This pessimizes |