Fix bug in previous change.

From-SVN: r37707
This commit is contained in:
Bernd Schmidt 2000-11-24 14:22:01 +00:00 committed by Bernd Schmidt
parent 235cfbc40f
commit 52a84e4270
2 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2000-11-24 Bernd Schmidt <bernds@redhat.co.uk>
* c-common.c (verify_tree): Don't recurse into CONSTRUCTORs.
* combine.c (cant_combine_insn_p): New function.
(try_combine): Use it.

View File

@ -3634,6 +3634,9 @@ verify_tree (x, pbefore_sp, pno_sp, writer)
switch (code)
{
case CONSTRUCTOR:
return;
case COMPOUND_EXPR:
case TRUTH_ANDIF_EXPR:
case TRUTH_ORIF_EXPR: