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
This commit is contained in:
Kazu Hirata 2005-03-12 14:09:23 +00:00 committed by Kazu Hirata
parent 84ceaf0682
commit 8b54274e86
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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