From: Diego Novillo Date: Tue, 15 Jun 2004 11:49:50 +0000 (+0000) Subject: * tree-ssa-copy.c (cprop_into_successor_phis): Fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9264db16997eea54e44c44a4869845f94f6102f7;p=gcc.git * tree-ssa-copy.c (cprop_into_successor_phis): Fix typo. From-SVN: r83177 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fec39d76c9e..6c953a16d74 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-06-15 Diego Novillo + + * tree-ssa-copy.c (cprop_into_successor_phis): Fix typo. + 2004-06-15 Paolo Bonzini * fold-const.c (operand_equal_p): Update comment. diff --git a/gcc/tree-ssa-copy.c b/gcc/tree-ssa-copy.c index 753a6772ea0..79015163fc4 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. */