Commit 7a71052e by Kai Tietz Committed by Kai Tietz

implicit-zee.c (num_realized): Change type to long.

	* implicit-zee.c (num_realized): Change type to long.
	(num_ze_opportunities): Likewise.

From-SVN: r182155
parent c573faf5
2011-12-09 Kai Tietz <ktietz@redhat.com>
* implicit-zee.c (num_realized): Change type to long.
(num_ze_opportunities): Likewise.
2011-12-08 Andrew Pinski <apinski@cavium.com> 2011-12-08 Andrew Pinski <apinski@cavium.com>
* config/mips/mips-cpus.def (octeon+): New CPU. * config/mips/mips-cpus.def (octeon+): New CPU.
...@@ -889,8 +889,8 @@ find_and_remove_ze (void) ...@@ -889,8 +889,8 @@ find_and_remove_ze (void)
rtx curr_insn = NULL_RTX; rtx curr_insn = NULL_RTX;
int i; int i;
int ix; int ix;
long long num_realized = 0; long num_realized = 0;
long long num_ze_opportunities = 0; long num_ze_opportunities = 0;
VEC (rtx, heap) *zeinsn_list; VEC (rtx, heap) *zeinsn_list;
VEC (rtx, heap) *zeinsn_del_list; VEC (rtx, heap) *zeinsn_del_list;
...@@ -944,10 +944,10 @@ find_and_remove_ze (void) ...@@ -944,10 +944,10 @@ find_and_remove_ze (void)
VEC_free (rtx, heap, zeinsn_del_list); VEC_free (rtx, heap, zeinsn_del_list);
if (dump_file && num_ze_opportunities > 0) if (dump_file && num_ze_opportunities > 0)
fprintf (dump_file, "\n %s : num_zee_opportunities = %lld " fprintf (dump_file, "\n %s : num_zee_opportunities = %ld"
"num_realized = %lld \n", " num_realized = %ld\n",
current_function_name (), current_function_name (), num_ze_opportunities,
num_ze_opportunities, num_realized); num_realized);
df_finish_pass (false); df_finish_pass (false);
return 0; return 0;
......
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