Add missing file to my previous commit.

From-SVN: r219123
This commit is contained in:
Uros Bizjak 2014-12-31 12:35:35 +01:00 committed by Uros Bizjak
parent 582f770b45
commit 378b29320b
2 changed files with 3 additions and 2 deletions

View File

@ -6,6 +6,7 @@
* targhooks.c (pch_option_mismatch): Ditto.
* tree-ssa-structalias.c (create_function_info_for): Ditto.
(create_variable_info_for_1): Ditto.
* tree-vect-data-refs.c (vect_create_destination_var): Ditto.
2014-12-30 Anthony Green <green@moxielogic.com>

View File

@ -4397,9 +4397,9 @@ vect_create_destination_var (tree scalar_dest, tree vectype)
name = get_name (scalar_dest);
if (name)
asprintf (&new_name, "%s_%u", name, SSA_NAME_VERSION (scalar_dest));
new_name = xasprintf ("%s_%u", name, SSA_NAME_VERSION (scalar_dest));
else
asprintf (&new_name, "_%u", SSA_NAME_VERSION (scalar_dest));
new_name = xasprintf ("_%u", SSA_NAME_VERSION (scalar_dest));
vec_dest = vect_get_new_vect_var (type, kind, new_name);
free (new_name);