diff options
Diffstat (limited to 'gcc/gimple-low.c')
-rw-r--r-- | gcc/gimple-low.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/gimple-low.c b/gcc/gimple-low.c index 93532b9..ba539ac 100644 --- a/gcc/gimple-low.c +++ b/gcc/gimple-low.c @@ -344,7 +344,7 @@ lower_bind_expr (tree_stmt_iterator *tsi, struct lower_data *data) This is a subroutine of block_may_fallthru. */ static bool -try_catch_may_fallthru (tree stmt) +try_catch_may_fallthru (const_tree stmt) { tree_stmt_iterator i; @@ -394,9 +394,9 @@ try_catch_may_fallthru (tree stmt) If we're wrong, we'll just delete the extra code later. */ bool -block_may_fallthru (tree block) +block_may_fallthru (const_tree block) { - tree stmt = expr_last (block); + const_tree stmt = const_expr_last (block); switch (stmt ? TREE_CODE (stmt) : ERROR_MARK) { |