diff options
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1490,6 +1490,7 @@ chainon (op1, op2) { for (t = op1; TREE_CHAIN (t); t = TREE_CHAIN (t)) if (t == op2) abort (); /* Circularity being created */ + if (t == op2) abort (); /* Circularity being created */ TREE_CHAIN (t) = op2; return op1; } |