From a51042110f7b12f90ca1dfd6a96e99ea946a5c72 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Mon, 3 Apr 2000 23:25:07 +0000 Subject: bb-reorder.c (verify_insn_chain): #ifdef out unless ENABLE_CHECKING. * bb-reorder.c (verify_insn_chain): #ifdef out unless ENABLE_CHECKING. * i386.h (FUNCTION_ARG_REGNO_P): Remove unnecessary test for N >= 0. * i386.md (call_value, call_value_pop): Remove unused variable 'addr'. From-SVN: r32893 --- gcc/bb-reorder.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gcc/bb-reorder.c') diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index 0000530..e2f40f1 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -123,8 +123,9 @@ static basic_block get_common_dest PARAMS ((basic_block, basic_block)); static basic_block chain_reorder_blocks PARAMS ((edge, basic_block)); static void make_reorder_chain PARAMS ((basic_block)); static void fixup_reorder_chain PARAMS ((void)); +#ifdef ENABLE_CHECKING static void verify_insn_chain PARAMS ((void)); - +#endif /* Skip over insns BEFORE or AFTER BB which are typically associated with basic block BB. */ @@ -718,7 +719,7 @@ fixup_reorder_chain () reverse direction. 2. Count insns in chain, going both directions, and check if equal. 3. Check that get_last_insn () returns the actual end of chain. */ - +#ifdef ENABLE_CHECKING static void verify_insn_chain () { @@ -775,7 +776,7 @@ verify_insn_chain () abort (); } } - +#endif /* Reorder basic blocks. */ -- cgit v1.1