Commit daae4650 by Mikael Pettersson Committed by Richard Biener

re PR tree-optimization/50005 (ipa-inline-analysis.c:1876:41: error: comparison…

re PR tree-optimization/50005 (ipa-inline-analysis.c:1876:41: error: comparison between signed an d unsigned integer expressions)

2011-08-08  Mikael Pettersson  <mikpe@it.uu.se>

        PR tree-optimization/50005
        * ipa-inline-analysis (remap_predicate): Add cast to
        silence signed/unsigned comparison warning.

From-SVN: r177557
parent 3e762578
2011-08-08 Mikael Pettersson <mikpe@it.uu.se>
PR tree-optimization/50005
* ipa-inline-analysis (remap_predicate): Add cast to
silence signed/unsigned comparison warning.
2011-08-08 Richard Sandiford <richard.sandiford@linaro.org>
* modulo-sched.c (get_sched_window): Use a table for the debug output.
......
......@@ -1873,7 +1873,7 @@ remap_predicate (struct inline_summary *info, struct inline_summary *callee_info
/* See if we can remap condition operand to caller's operand.
Otherwise give up. */
if (!operand_map
|| VEC_length (int, operand_map) <= c->operand_num
|| (int)VEC_length (int, operand_map) <= c->operand_num
|| VEC_index (int, operand_map, c->operand_num) == -1)
cond_predicate = true_predicate ();
else
......
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