aboutsummaryrefslogtreecommitdiff
path: root/gcc/emit-rtl.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/emit-rtl.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/emit-rtl.c')
-rw-r--r--gcc/emit-rtl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c
index 5ce8519..f9b1347 100644
--- a/gcc/emit-rtl.c
+++ b/gcc/emit-rtl.c
@@ -2441,7 +2441,7 @@ set_used_decls (tree blk)
set_used_flags (DECL_RTL (t));
/* Now process sub-blocks. */
- for (t = BLOCK_SUBBLOCKS (blk); t; t = TREE_CHAIN (t))
+ for (t = BLOCK_SUBBLOCKS (blk); t; t = BLOCK_CHAIN (t))
set_used_decls (t);
}