PR tree-optimization/24709
* tree-ssa-operands.c (verify_imm_links): Increase limit for infinite
loop check.
From-SVN: r106865
+2005-11-13 Andrew MacLeod <amacleod@redhat.com>
+
+ PR tree-optimization/24709
+ * tree-ssa-operands.c (verify_imm_links): Increase limit for infinite
+ loop check.
+
2005-11-13 Eric Botcazou <ebotcazou@libertysurf.fr>
* gthr-posix95.h: Remove declaration of pthread_mutexattr_settype
prev = ptr;
ptr = ptr->next;
- /* Avoid infinite loops. */
- if (count++ > 30000)
+ /* Avoid infinite loops. 50,000,000 uses probably indicates a problem. */
+ if (count++ > 50000000)
goto error;
}