diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-05-08 05:17:54 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-05-08 05:17:54 +0000 |
commit | bca504069d503b69f51f380c86c5c929651c9da8 (patch) | |
tree | 3b41ded138e26f5222fd1c63db9b0f9155696bd5 /gcc/tree-phinodes.c | |
parent | 923d16d409b1c8c6947d2f539ce27e233bb41c9a (diff) | |
download | gcc-bca504069d503b69f51f380c86c5c929651c9da8.tar.gz |
see.c, [...]: Fix comment typos.
* see.c, tree-flow-inline.h, tree-phinodes.c: Fix comment
typos.
From-SVN: r113621
Diffstat (limited to 'gcc/tree-phinodes.c')
-rw-r--r-- | gcc/tree-phinodes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-phinodes.c b/gcc/tree-phinodes.c index 5e85aea64e4..98b011f89e6 100644 --- a/gcc/tree-phinodes.c +++ b/gcc/tree-phinodes.c @@ -417,7 +417,7 @@ remove_phi_arg_num (tree phi, int i) use_operand_p old_p, new_p; old_p = &PHI_ARG_IMM_USE_NODE (phi, num_elem - 1); new_p = &PHI_ARG_IMM_USE_NODE (phi, i); - /* Set use on new node, and link into last elements's place. */ + /* Set use on new node, and link into last element's place. */ *(new_p->use) = *(old_p->use); relink_imm_use (new_p, old_p); } |