diff options
Diffstat (limited to 'gcc/gimple-low.c')
-rw-r--r-- | gcc/gimple-low.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple-low.c b/gcc/gimple-low.c index 9ea17af..5f3361a 100644 --- a/gcc/gimple-low.c +++ b/gcc/gimple-low.c @@ -610,7 +610,7 @@ gimple_stmt_may_fallthru (gimple *stmt) case GIMPLE_CALL: /* Functions that do not return do not fall through. */ - return (gimple_call_flags (stmt) & ECF_NORETURN) == 0; + return !gimple_call_noreturn_p (stmt); default: return true; |