From 038c79764b247f03fb5dfc2943cc32a8b3e15b6e Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Sun, 16 Jun 2002 09:50:12 -0600 Subject: toplev.c (rest_of_compilation): Perform a simpler, less costly cleanup of the CFG when not optimizing. * toplev.c (rest_of_compilation): Perform a simpler, less costly cleanup of the CFG when not optimizing. From-SVN: r54667 --- gcc/toplev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/toplev.c') diff --git a/gcc/toplev.c b/gcc/toplev.c index 7965059..7c1e0d6 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -2720,7 +2720,7 @@ rest_of_compilation (decl) } timevar_push (TV_JUMP); - cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP); + cleanup_cfg (optimize ? CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP: 0); /* Try to identify useless null pointer tests and delete them. */ if (flag_delete_null_pointer_checks) -- cgit v1.1