diff options
Diffstat (limited to 'gcc/gimplify.c')
-rw-r--r-- | gcc/gimplify.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c index a2d71d2..4390f7d 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -10319,10 +10319,8 @@ gimplify_body (tree fndecl, bool do_parms) pop_gimplify_context (outer_bind); gcc_assert (gimplify_ctxp == NULL); -#ifdef ENABLE_CHECKING - if (!seen_error ()) + if (flag_checking && !seen_error ()) verify_gimple_in_seq (gimple_bind_body (outer_bind)); -#endif timevar_pop (TV_TREE_GIMPLIFY); input_location = saved_location; @@ -10614,11 +10612,9 @@ gimplify_hasher::equal (const elt_t *p1, const elt_t *p2) if (!operand_equal_p (t1, t2, 0)) return false; -#ifdef ENABLE_CHECKING /* Only allow them to compare equal if they also hash equal; otherwise results are nondeterminate, and we fail bootstrap comparison. */ - gcc_assert (hash (p1) == hash (p2)); -#endif + gcc_checking_assert (hash (p1) == hash (p2)); return true; } |