2013-05-08 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
* gimple-ssa-strength-reduction.c (count_candidates): Change
return value to int.
(analyze_candidates_and_replace): Change type of length to int.
From-SVN: r198715
+2013-05-08 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
+
+ * gimple-ssa-strength-reduction.c (count_candidates): Change
+ return value to int.
+ (analyze_candidates_and_replace): Change type of length to int.
+
2013-05-08 Uros Bizjak <ubizjak@gmail.com>
* config/i386/sse.md (PEXTR_MODE, PEXTR_MODEx): Remove.
/* Count the number of candidates in the tree rooted at C that have
not already been replaced under other interpretations. */
-static unsigned
+static int
count_candidates (slsr_cand_t c)
{
unsigned count = cand_already_replaced (c) ? 0 : 1;
less expensive to calculate than the replaced statements. */
else
{
- unsigned length;
+ int length;
enum machine_mode mode;
bool speed;