aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-inline.c
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2007-11-25 14:26:10 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2007-11-25 14:26:10 +0000
commit87caf699bdbee02675437483d08bcfa742277a62 (patch)
tree4f90b0636e3c28f99068596b3f97669cdfe3b1b1 /gcc/tree-inline.c
parentf1c8c7eef7349f0aae539bd1b45875ac5bcbaede (diff)
downloadgcc-87caf699bdbee02675437483d08bcfa742277a62.zip
gcc-87caf699bdbee02675437483d08bcfa742277a62.tar.gz
gcc-87caf699bdbee02675437483d08bcfa742277a62.tar.bz2
tree.h (struct tree_block): Move locus member next to flags.
2007-11-25 Richard Guenther <rguenther@suse.de> * tree.h (struct tree_block): Move locus member next to flags. * c-decl.c (SCOPE_LIST_APPEND): Use BLOCK_CHAIN. (SCOPE_LIST_CONCAT): Likewise. (pop_scope): Likewise. * function.c (instantiate_decls_1): Likewise. (setjmp_vars_warning): Likewise. * emit-rtl.c (set_used_decls): Likewise. * tree-inline.c (add_lexical_block): Likewise. cp/ decl.c (poplevel): Use BLOCK_CHAIN. ada/ utils.c (gnat_pushlevel): Use BLOCK_CHAIN. (gnat_poplevel): Likewise. From-SVN: r130407
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r--gcc/tree-inline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c
index da52d6c..cb161db 100644
--- a/gcc/tree-inline.c
+++ b/gcc/tree-inline.c
@@ -2474,7 +2474,7 @@ add_lexical_block (tree current_block, tree new_block)
/* Walk to the last sub-block. */
for (blk_p = &BLOCK_SUBBLOCKS (current_block);
*blk_p;
- blk_p = &TREE_CHAIN (*blk_p))
+ blk_p = &BLOCK_CHAIN (*blk_p))
;
*blk_p = new_block;
BLOCK_SUPERCONTEXT (new_block) = current_block;