diff options
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 2 |
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; |