Message ID | 55F20562.6040309@redhat.com |
---|---|
State | New |
Headers | show |
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index 7e576bc..8795eef 100644 --- a/gcc/cfgcleanup.c +++ b/gcc/cfgcleanup.c @@ -2875,9 +2875,8 @@ try_optimize_cfg (int mode) which will be done in fixup_partitions. */ fixup_partitions (); -#ifdef ENABLE_CHECKING - verify_flow_info (); -#endif + if (CHECKING_P) + verify_flow_info (); Looks like indentation is wrong here on the new code. diff --git a/gcc/genconditions.c b/gcc/genconditions.c index 001e58e..7481ab4 100644 --- a/gcc/genconditions.c +++ b/gcc/genconditions.c @@ -60,6 +60,8 @@ write_header (void) \n\ /* Do not allow checking to confuse the issue. */\n\ #undef ENABLE_CHECKING\n\ Does this line need to be removed? Jeff