Commit 75328849 by Kazu Hirata Committed by Kazu Hirata

value-prof.c (mod_subtract_transform): Remove local variable value.

	* value-prof.c (mod_subtract_transform): Remove local variable
	value.

From-SVN: r96338
parent 8b54274e
......@@ -12,6 +12,9 @@
* tree-vect-transform.c (vect_get_new_vect_var): Remove local
variable prefix_len.
* value-prof.c (mod_subtract_transform): Remove local variable
value.
2005-03-12 Geoffrey Keating <geoffk@apple.com>
* c-lex.c (c_lex_with_flags): Add parameter to call to
......
......@@ -826,7 +826,7 @@ gen_mod_subtract (enum machine_mode mode, enum rtx_code operation,
static bool
mod_subtract_transform (rtx insn)
{
rtx set, set_src, set_dest, op1, op2, value, histogram;
rtx set, set_src, set_dest, op1, op2, histogram;
enum rtx_code code;
enum machine_mode mode;
gcov_type wrong_values, counts[2], count, all;
......@@ -858,7 +858,6 @@ mod_subtract_transform (rtx insn)
return false;
histogram = XEXP (XEXP (histogram, 0), 1);
value = XEXP (histogram, 0);
histogram = XEXP (histogram, 1);
all = 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