Commit 8b54274e by Kazu Hirata Committed by Kazu Hirata

tree-vect-transform.c (vect_get_new_vect_var): Remove local variable prefix_len.

	* tree-vect-transform.c (vect_get_new_vect_var): Remove local
	variable prefix_len.

From-SVN: r96337
parent 84ceaf06
......@@ -9,6 +9,9 @@
* tree-ssa-pre.c (compute_avail): Remove local variable val.
(mark_operand_necessary): Remove local variable ver.
* tree-vect-transform.c (vect_get_new_vect_var): Remove local
variable prefix_len.
2005-03-12 Geoffrey Keating <geoffk@apple.com>
* c-lex.c (c_lex_with_flags): Add parameter to call to
......
......@@ -82,7 +82,6 @@ static tree
vect_get_new_vect_var (tree type, enum vect_var_kind var_kind, const char *name)
{
const char *prefix;
int prefix_len;
tree new_vect_var;
if (var_kind == vect_simple_var)
......@@ -90,8 +89,6 @@ vect_get_new_vect_var (tree type, enum vect_var_kind var_kind, const char *name)
else
prefix = "vect_p";
prefix_len = strlen (prefix);
if (name)
new_vect_var = create_tmp_var (type, concat (prefix, name, NULL));
else
......
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