Commit db753fa1 by Richard Henderson Committed by Richard Henderson

re PR tree-optimization/22623 (type mismatch between an SSA_NAME and its symbol)

        PR tree-optimization/22623
        * tree-complex.c (set_component_ssa_name): Use replace_ssa_name_symbol.

From-SVN: r102315
parent 28f155be
2005-07-23 Richard Henderson <rth@redhat.com>
PR tree-optimization/22623
* tree-complex.c (set_component_ssa_name): Use replace_ssa_name_symbol.
2005-07-23 Giovanni Bajo <giovannibajo@libero.it>
PR target/22577
......
......@@ -517,7 +517,7 @@ set_component_ssa_name (tree ssa_name, bool imag_p, tree value)
&& !DECL_IGNORED_P (SSA_NAME_VAR (ssa_name)))
{
comp = get_component_var (SSA_NAME_VAR (ssa_name), imag_p);
SSA_NAME_VAR (value) = comp;
replace_ssa_name_symbol (value, comp);
}
VEC_replace (tree, complex_ssa_name_components, ssa_name_index, value);
......
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