Commit 1ede5f2c by Bill Schmidt Committed by William Schmidt

tree-ssa-reassoc.c (attempt_builtin_powi_stats): Change %ld to…

tree-ssa-reassoc.c (attempt_builtin_powi_stats): Change %ld to HOST_WIDE_INT_PRINT_DEC in format strings.

2012-04-12  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>

	* tree-ssa-reassoc.c (attempt_builtin_powi_stats): Change %ld to
	HOST_WIDE_INT_PRINT_DEC in format strings.

From-SVN: r186393
parent 2fc9b37d
2012-04-12 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
* tree-ssa-reassoc.c (attempt_builtin_powi_stats): Change %ld to
HOST_WIDE_INT_PRINT_DEC in format strings.
2012-04-12 Uros Bizjak <ubizjak@gmail.com>
PR target/52932
......
......@@ -3186,7 +3186,8 @@ attempt_builtin_powi (gimple stmt, VEC(operand_entry_t, heap) **ops,
if (elt < vec_len - 1)
fputs (" * ", dump_file);
}
fprintf (dump_file, ")^%ld\n", power);
fprintf (dump_file, ")^"HOST_WIDE_INT_PRINT_DEC"\n",
power);
}
}
}
......@@ -3219,7 +3220,7 @@ attempt_builtin_powi (gimple stmt, VEC(operand_entry_t, heap) **ops,
if (elt < vec_len - 1)
fputs (" * ", dump_file);
}
fprintf (dump_file, ")^%ld\n", power);
fprintf (dump_file, ")^"HOST_WIDE_INT_PRINT_DEC"\n", power);
}
reassociate_stats.pows_created++;
......
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