Commit f6e215cc by Josef Zlomek Committed by Josef Zlomek

var-tracking.c (vt_add_function_parameters): Surround checkings by #ifdef…

var-tracking.c (vt_add_function_parameters): Surround checkings by #ifdef ENABLE_CHECKING and #endif.

	* var-tracking.c (vt_add_function_parameters): Surround checkings by
	#ifdef ENABLE_CHECKING and #endif.

From-SVN: r77458
parent dfb36f9b
2004-02-07 Josef Zlomek <zlomekj@suse.cz>
* var-tracking.c (vt_add_function_parameters): Surround checkings by
#ifdef ENABLE_CHECKING and #endif.
2004-02-07 Roger Sayle <roger@eyesopen.com>
* fold-const.c (negate_expr_p, negate_expr): Optimize -(A+B) into
......
......@@ -2386,8 +2386,10 @@ vt_add_function_parameters (void)
if (!decl)
continue;
#ifdef ENABLE_CHECKING
if (parm != decl)
abort ();
#endif
incoming = eliminate_regs (incoming, 0, NULL_RTX);
if (!frame_pointer_needed && GET_CODE (incoming) == MEM)
......@@ -2397,8 +2399,10 @@ vt_add_function_parameters (void)
if (GET_CODE (incoming) == REG)
{
#ifdef ENABLE_CHECKING
if (REGNO (incoming) >= FIRST_PSEUDO_REGISTER)
abort ();
#endif
attrs_list_insert (&in->regs[REGNO (incoming)],
parm, offset, incoming);
attrs_list_insert (&out->regs[REGNO (incoming)],
......
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