diff options
author | Richard Henderson <rth@redhat.com> | 2005-07-23 14:50:14 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2005-07-23 14:50:14 -0700 |
commit | db753fa1cb6104bea2c9a56811abe79aa945ce8f (patch) | |
tree | 261b06ee445b2281d533716e76dfb91a7c0a16fd /gcc/tree-complex.c | |
parent | 28f155be0a63e8c65a10ba0074d12586d87e82bc (diff) | |
download | gcc-db753fa1cb6104bea2c9a56811abe79aa945ce8f.zip gcc-db753fa1cb6104bea2c9a56811abe79aa945ce8f.tar.gz gcc-db753fa1cb6104bea2c9a56811abe79aa945ce8f.tar.bz2 |
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
Diffstat (limited to 'gcc/tree-complex.c')
-rw-r--r-- | gcc/tree-complex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-complex.c b/gcc/tree-complex.c index 63295fe..a675f0a 100644 --- a/gcc/tree-complex.c +++ b/gcc/tree-complex.c @@ -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); |