Commit 6677e189 by Andreas Tobler Committed by Andreas Tobler

tree-ssa-operands.c (finalize_ssa_def_ops): Move the declaration of ptr into the…

tree-ssa-operands.c (finalize_ssa_def_ops): Move the declaration of ptr into the ENABLE_CHECKING section.

2006-03-08  Andreas Tobler  <a.tobler@schweiz.ch>

	* tree-ssa-operands.c (finalize_ssa_def_ops): Move the declaration
	of ptr into the ENABLE_CHECKING section.

From-SVN: r111849
parent 60c9ad46
2006-03-08 Andreas Tobler <a.tobler@schweiz.ch>
* tree-ssa-operands.c (finalize_ssa_def_ops): Move the declaration
of ptr into the ENABLE_CHECKING section.
2006-03-08 Jeff Law <law@redhat.com>
* tree-vrp.c (infer_value_range): Only count pointer uses
......
......@@ -501,7 +501,7 @@ finalize_ssa_def_ops (tree stmt)
{
unsigned new_i;
struct def_optype_d new_list;
def_optype_p old_ops, ptr, last;
def_optype_p old_ops, last;
tree *old_base;
new_list.next = NULL;
......@@ -552,6 +552,7 @@ finalize_ssa_def_ops (tree stmt)
#ifdef ENABLE_CHECKING
{
def_optype_p ptr;
unsigned x = 0;
for (ptr = DEF_OPS (stmt); ptr; ptr = ptr->next)
x++;
......
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