diff options
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index bdb1bce2323..51c0d266aa0 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -2686,16 +2686,6 @@ last_stmt (basic_block bb) } -/* Return a pointer to the last statement in block BB. */ - -tree * -last_stmt_ptr (basic_block bb) -{ - block_stmt_iterator last = bsi_last (bb); - return !bsi_end_p (last) ? bsi_stmt_ptr (last) : NULL; -} - - /* Return the last statement of an otherwise empty block. Return NULL if the block is totally empty, or if it contains more than one statement. */ |