Commit 0f4668ef by Craig Burley Committed by Craig Burley

Check for circularity only if ENABLE_CHECKING is defined

From-SVN: r26517
parent 75e8000e
Sat Apr 17 14:36:19 1999 Craig Burley <craig@jcb-sc.com>
* tree.c (chainon): Check for circularity only if
ENABLE_CHECKING is defined.
1999-04-17 10:15 -0400 Zack Weinberg <zack@rabi.columbia.edu>
* cccp.c: Make fatal non-static.
......
......@@ -1956,9 +1956,11 @@ chainon (op1, op2)
for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
;
TREE_CHAIN (t1) = op2;
#ifdef ENABLE_CHECKING
for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
if (t2 == t1)
abort (); /* Circularity created. */
#endif
return op1;
}
else return op2;
......
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