Commit db20bd62 by Andrew Pinski Committed by Andrew Pinski

flow.c (init_propagate_block_info): Change the type of i to unsigned.

2004-11-04  Andrew Pinski  <pinskia@physics.uc.edu>

        * flow.c (init_propagate_block_info): Change the type of i to
        unsigned.

From-SVN: r90080
parent 968e08d6
2004-11-04 Andrew Pinski <pinskia@physics.uc.edu>
* flow.c (init_propagate_block_info): Change the type of i to
unsigned.
2004-11-04 Ulrich Weigand <uweigand@de.ibm.com> 2004-11-04 Ulrich Weigand <uweigand@de.ibm.com>
PR tree-optimization/18184 PR tree-optimization/18184
......
...@@ -1821,7 +1821,7 @@ init_propagate_block_info (basic_block bb, regset live, regset local_set, ...@@ -1821,7 +1821,7 @@ init_propagate_block_info (basic_block bb, regset live, regset local_set,
regset_head diff_head; regset_head diff_head;
regset diff = INITIALIZE_REG_SET (diff_head); regset diff = INITIALIZE_REG_SET (diff_head);
basic_block bb_true, bb_false; basic_block bb_true, bb_false;
int i; unsigned i;
/* Identify the successor blocks. */ /* Identify the successor blocks. */
bb_true = EDGE_SUCC (bb, 0)->dest; bb_true = EDGE_SUCC (bb, 0)->dest;
......
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