diff options
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 7c1e0d68d6d..cbdb8ffa732 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -2779,9 +2779,8 @@ rest_of_compilation (decl) { timevar_push (TV_JUMP); - if (flag_delete_null_pointer_checks) - if (delete_null_pointer_checks (insns)) - cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP); + if (delete_null_pointer_checks (insns)) + cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP); timevar_pop (TV_JUMP); } |