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
+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.
/* 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