diff options
author | Jakub Jelinek <jakub@redhat.com> | 2019-03-13 09:48:56 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2019-03-13 09:48:56 +0100 |
commit | 6e089cc3f64dd9b5acce75914897b99ababcaaa5 (patch) | |
tree | f5e998f5c8c1d151b29d4836692d05b096954629 /gcc | |
parent | 33813f1d703c95d4fc87d16a17f6c834135ab209 (diff) | |
download | gcc-6e089cc3f64dd9b5acce75914897b99ababcaaa5.zip gcc-6e089cc3f64dd9b5acce75914897b99ababcaaa5.tar.gz gcc-6e089cc3f64dd9b5acce75914897b99ababcaaa5.tar.bz2 |
ipa-param-manipulation.h (struct ipa_parm_adjustment): Remove nonlocal_value member.
* ipa-param-manipulation.h (struct ipa_parm_adjustment): Remove
nonlocal_value member.
From-SVN: r269637
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/ipa-param-manipulation.h | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 74ed267..310f8f8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2019-03-13 Jakub Jelinek <jakub@redhat.com> + * ipa-param-manipulation.h (struct ipa_parm_adjustment): Remove + nonlocal_value member. + PR middle-end/88588 * omp-simd-clone.c (ipa_simd_modify_stmt_ops): Handle PHI args. (ipa_simd_modify_function_body): Handle PHIs. diff --git a/gcc/ipa-param-manipulation.h b/gcc/ipa-param-manipulation.h index e2b543a..71fc4a2 100644 --- a/gcc/ipa-param-manipulation.h +++ b/gcc/ipa-param-manipulation.h @@ -75,10 +75,6 @@ struct ipa_parm_adjustment non-default-def ssa names when a parm decl is going away. */ tree new_ssa_base; - /* If non-NULL and the original parameter is to be removed (copy_param below - is NULL), this is going to be its nonlocalized vars value. */ - tree nonlocal_value; - /* This holds the prefix to be used for the new DECL_NAME. */ const char *arg_prefix; |