Commit 02f4bd12 by Kazu Hirata Committed by Kazu Hirata

* tree-cfg.c (tree_forwarder_block_p): Fix a typo.

From-SVN: r99161
parent 9bb3323d
2005-05-03 Kazu Hirata <kazu@cs.umass.edu>
* tree-cfg.c (tree_forwarder_block_p): Fix a typo.
2005-05-03 Eric Botcazou <ebotcazou@libertysurf.fr>
* config/sparc/predicates.md (const_compl_high_operand): New.
......
......@@ -4029,7 +4029,7 @@ tree_forwarder_block_p (basic_block bb, bool phi_wanted)
/* Now walk through the statements backward. We can ignore labels,
anything else means this is not a forwarder block. */
for (bsi = bsi_last (bb); !bsi_end_p (bsi); bsi_next (&bsi))
for (bsi = bsi_last (bb); !bsi_end_p (bsi); bsi_prev (&bsi))
{
tree stmt = bsi_stmt (bsi);
......
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