diff options
author | Zack Weinberg <zack@wolery.cumb.org> | 2000-04-03 23:25:07 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-04-03 23:25:07 +0000 |
commit | a51042110f7b12f90ca1dfd6a96e99ea946a5c72 (patch) | |
tree | 27761750c5c166af3e1dcdd3db8e382449c95495 /gcc/bb-reorder.c | |
parent | f6905025adc1f3cb637a26b5899720fcc64ab93f (diff) | |
download | gcc-a51042110f7b12f90ca1dfd6a96e99ea946a5c72.tar.gz |
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
Diffstat (limited to 'gcc/bb-reorder.c')
-rw-r--r-- | gcc/bb-reorder.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index 00005301989..e2f40f1657e 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. */ |