Commit 52a84e42 by Bernd Schmidt Committed by Bernd Schmidt

Fix bug in previous change.

From-SVN: r37707
parent 235cfbc4
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.
......
......@@ -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:
......
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