diff options
author | Diego Novillo <dnovillo@redhat.com> | 2004-06-15 11:49:50 +0000 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2004-06-15 07:49:50 -0400 |
commit | 9264db16997eea54e44c44a4869845f94f6102f7 (patch) | |
tree | 55a5162d9bd6c3be7c859a054d8a4df9a151bba9 | |
parent | de5c90ffa4932daa2eb83cd6f7c831926bc5b9a5 (diff) | |
download | gcc-9264db16997eea54e44c44a4869845f94f6102f7.zip gcc-9264db16997eea54e44c44a4869845f94f6102f7.tar.gz gcc-9264db16997eea54e44c44a4869845f94f6102f7.tar.bz2 |
* tree-ssa-copy.c (cprop_into_successor_phis): Fix typo.
From-SVN: r83177
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-ssa-copy.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fec39d7..6c953a1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-06-15 Diego Novillo <dnovillo@redhat.com> + + * tree-ssa-copy.c (cprop_into_successor_phis): Fix typo. + 2004-06-15 Paolo Bonzini <bonzini@gnu.org> * fold-const.c (operand_equal_p): Update comment. diff --git a/gcc/tree-ssa-copy.c b/gcc/tree-ssa-copy.c index 753a677..7901516 100644 --- a/gcc/tree-ssa-copy.c +++ b/gcc/tree-ssa-copy.c @@ -350,7 +350,7 @@ cprop_into_successor_phis (basic_block bb, /* If the alternative is known to have a nonzero value, record that fact in the PHI node itself for future use. */ if (bitmap_bit_p (nonzero_vars, SSA_NAME_VERSION (*orig_p))) - PHI_ARG_NONZERO (phi, i) = true; + PHI_ARG_NONZERO (phi, hint) = true; /* If we have *ORIG_P in our constant/copy table, then replace ORIG_P with its value in our constant/copy table. */ |