diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2008-09-18 14:13:54 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 2008-09-18 14:13:54 +0000 |
commit | 4b756989b32aaf3fb7a6634de437bbe97d861654 (patch) | |
tree | f5f2e1555541060d7fd09a0130a521d5d22d2379 /gcc/tree-outof-ssa.c | |
parent | a38df783a20767dcecc045d26b4b09807576f1c6 (diff) | |
download | gcc-4b756989b32aaf3fb7a6634de437bbe97d861654.zip gcc-4b756989b32aaf3fb7a6634de437bbe97d861654.tar.gz gcc-4b756989b32aaf3fb7a6634de437bbe97d861654.tar.bz2 |
Fix comments and formatrting
From-SVN: r140457
Diffstat (limited to 'gcc/tree-outof-ssa.c')
-rw-r--r-- | gcc/tree-outof-ssa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c index 042e349..82cc0ff 100644 --- a/gcc/tree-outof-ssa.c +++ b/gcc/tree-outof-ssa.c @@ -606,7 +606,7 @@ replace_def_variable (var_map map, def_operand_p def_p, tree *expr) } -/* Remove each argument from a PHI node. If an arg was the last use of an SSA_NAME, +/* Remove each argument from PHI. If an arg was the last use of an SSA_NAME, check to see if this allows another PHI node to be removed. */ static void @@ -667,8 +667,8 @@ eliminate_useless_phis (void) { #ifdef ENABLE_CHECKING size_t i; - /* There should be no arguments of this PHI which are not virtual, or we - get incorrect results. */ + /* There should be no arguments which are not virtual, or the + results will be incorrect. */ for (i = 0; i < gimple_phi_num_args (phi); i++) { tree arg = PHI_ARG_DEF (phi, i); |