Commit a5104211 by Zack Weinberg Committed by Zack Weinberg

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
parent f6905025
2000-04-03 Zack Weinberg <zack@wolery.cumb.org> 2000-04-03 Zack Weinberg <zack@wolery.cumb.org>
* 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'.
* gcc.c (C specs): Pass -fno-show-column to the preprocessor. * gcc.c (C specs): Pass -fno-show-column to the preprocessor.
* objc/lang-specs.h: Likewise. * objc/lang-specs.h: Likewise.
......
...@@ -123,8 +123,9 @@ static basic_block get_common_dest PARAMS ((basic_block, basic_block)); ...@@ -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 basic_block chain_reorder_blocks PARAMS ((edge, basic_block));
static void make_reorder_chain PARAMS ((basic_block)); static void make_reorder_chain PARAMS ((basic_block));
static void fixup_reorder_chain PARAMS ((void)); static void fixup_reorder_chain PARAMS ((void));
#ifdef ENABLE_CHECKING
static void verify_insn_chain PARAMS ((void)); static void verify_insn_chain PARAMS ((void));
#endif
/* Skip over insns BEFORE or AFTER BB which are typically associated with /* Skip over insns BEFORE or AFTER BB which are typically associated with
basic block BB. */ basic block BB. */
...@@ -718,7 +719,7 @@ fixup_reorder_chain () ...@@ -718,7 +719,7 @@ fixup_reorder_chain ()
reverse direction. reverse direction.
2. Count insns in chain, going both directions, and check if equal. 2. Count insns in chain, going both directions, and check if equal.
3. Check that get_last_insn () returns the actual end of chain. */ 3. Check that get_last_insn () returns the actual end of chain. */
#ifdef ENABLE_CHECKING
static void static void
verify_insn_chain () verify_insn_chain ()
{ {
...@@ -775,7 +776,7 @@ verify_insn_chain () ...@@ -775,7 +776,7 @@ verify_insn_chain ()
abort (); abort ();
} }
} }
#endif
/* Reorder basic blocks. */ /* Reorder basic blocks. */
......
...@@ -1210,7 +1210,7 @@ enum reg_class ...@@ -1210,7 +1210,7 @@ enum reg_class
#define APPLY_RESULT_SIZE (8+108) #define APPLY_RESULT_SIZE (8+108)
/* 1 if N is a possible register number for function argument passing. */ /* 1 if N is a possible register number for function argument passing. */
#define FUNCTION_ARG_REGNO_P(N) ((N) >= 0 && (N) < REGPARM_MAX) #define FUNCTION_ARG_REGNO_P(N) ((N) < REGPARM_MAX)
/* Define a data type for recording info about an argument list /* Define a data type for recording info about an argument list
during the scan of that argument list. This data type should during the scan of that argument list. This data type should
......
...@@ -7159,8 +7159,6 @@ ...@@ -7159,8 +7159,6 @@
"" ""
" "
{ {
rtx addr;
if (operands[4] == const0_rtx) if (operands[4] == const0_rtx)
{ {
emit_insn (gen_call_value (operands[0], operands[1], operands[2])); emit_insn (gen_call_value (operands[0], operands[1], operands[2]));
...@@ -7183,8 +7181,6 @@ ...@@ -7183,8 +7181,6 @@
"" ""
" "
{ {
rtx addr;
/* ??? Not true for calls to static functions. */ /* ??? Not true for calls to static functions. */
if (flag_pic) if (flag_pic)
current_function_uses_pic_offset_table = 1; current_function_uses_pic_offset_table = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment