diff options
author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-05-27 14:09:58 +0000 |
---|---|---|
committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-05-27 14:09:58 +0000 |
commit | a9de860566183da1607d54a9c02149978710d0c6 (patch) | |
tree | 40009057b3ede54dbd324e837ffe01bee4c74d42 /gcc/tree.h | |
parent | 0493e57c44c5ff6be801c3d86105d9d55b2782c9 (diff) | |
download | gcc-a9de860566183da1607d54a9c02149978710d0c6.tar.gz |
* dwarf2out.c: Remove block_map.
(gen_call_site_die): Replace block_map use with BLOCK_DIE.
(gen_lexical_block_die): Same.
(dwarf2out_function_decl): Remove block_map use.
(dwarf2out_c_finalize): Same.
* tree-core.h (struct tree_block): Add die field.
* tree.h (BLOCK_DIE): New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@223758 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index 1957dc5645e..58d2e9b8858 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -1589,6 +1589,7 @@ extern void protected_set_expr_location (tree, location_t); #define BLOCK_CHAIN(NODE) (BLOCK_CHECK (NODE)->block.chain) #define BLOCK_ABSTRACT_ORIGIN(NODE) (BLOCK_CHECK (NODE)->block.abstract_origin) #define BLOCK_ABSTRACT(NODE) (BLOCK_CHECK (NODE)->block.abstract_flag) +#define BLOCK_DIE(NODE) (BLOCK_CHECK (NODE)->block.die) /* True if BLOCK has the same ranges as its BLOCK_SUPERCONTEXT. */ #define BLOCK_SAME_RANGE(NODE) (BLOCK_CHECK (NODE)->base.u.bits.nameless_flag) |