Commit 378b2932 by Uros Bizjak Committed by Uros Bizjak

Add missing file to my previous commit.

From-SVN: r219123
parent 582f770b
......@@ -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>
......@@ -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);
......
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