diff options
author | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-13 16:09:14 +0000 |
---|---|---|
committer | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-13 16:09:14 +0000 |
commit | f04f077c090a5fdea4222f36a44aed48499bed3b (patch) | |
tree | 3d8778c20355fe31bbb8a1343568b580ebf95887 /gcc/tree-ssa-operands.c | |
parent | 0ab53de2cb1a26cbeeac60f90b4aa4987f422894 (diff) | |
download | gcc-f04f077c090a5fdea4222f36a44aed48499bed3b.tar.gz |
PR tree-optimization/24709
* tree-ssa-operands.c (verify_imm_links): Increase limit for infinite
loop check.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@106865 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-operands.c')
-rw-r--r-- | gcc/tree-ssa-operands.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index c902ff980f6..d6c8ccb3f7d 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -2012,8 +2012,8 @@ verify_imm_links (FILE *f, tree var) 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; } |