diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-15 11:49:50 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-15 11:49:50 +0000 |
commit | 01e816015cefe35dbdf226cd6957fd3c88e15c25 (patch) | |
tree | 55a5162d9bd6c3be7c859a054d8a4df9a151bba9 /gcc/tree-ssa-copy.c | |
parent | a1460a402ad7b344f60e60188ffd76450d9b5ad4 (diff) | |
download | gcc-01e816015cefe35dbdf226cd6957fd3c88e15c25.tar.gz |
* tree-ssa-copy.c (cprop_into_successor_phis): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83177 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-copy.c')
-rw-r--r-- | gcc/tree-ssa-copy.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |