diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2015-07-13 04:46:34 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2015-07-13 04:46:34 +0000 |
commit | 026c3cfd5e92e7f358290921984b57e1b433e658 (patch) | |
tree | b334918063791e89f97a111eb02e3d0c9f8a766e /gcc/ipa-prop.c | |
parent | 7e8ce0f35920ca44b790a742ab1e5058034c7fc2 (diff) | |
download | gcc-026c3cfd5e92e7f358290921984b57e1b433e658.zip gcc-026c3cfd5e92e7f358290921984b57e1b433e658.tar.gz gcc-026c3cfd5e92e7f358290921984b57e1b433e658.tar.bz2 |
Fix double word typos.
From-SVN: r225726
Diffstat (limited to 'gcc/ipa-prop.c')
-rw-r--r-- | gcc/ipa-prop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ipa-prop.c b/gcc/ipa-prop.c index 6074194..29178d4 100644 --- a/gcc/ipa-prop.c +++ b/gcc/ipa-prop.c @@ -673,7 +673,7 @@ param_type_may_change_p (tree function, tree arg, gimple call) /* Normal (non-THIS) argument. */ if ((SSA_NAME_VAR (arg) != DECL_ARGUMENTS (function) || TREE_CODE (TREE_TYPE (function)) != METHOD_TYPE) - /* THIS pointer of an method - here we we want to watch constructors + /* THIS pointer of an method - here we want to watch constructors and destructors as those definitely may change the dynamic type. */ || (TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE @@ -2330,7 +2330,7 @@ analysis_dom_walker::before_dom_children (basic_block bb) ipa_compute_jump_functions_for_bb (m_fbi, bb); } -/* Initialize the array describing properties of of formal parameters +/* Initialize the array describing properties of formal parameters of NODE, analyze their uses and compute jump functions associated with actual arguments of calls from within NODE. */ |