diff options
author | rmathew <rmathew@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-15 12:17:16 +0000 |
---|---|---|
committer | rmathew <rmathew@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-15 12:17:16 +0000 |
commit | 5cdd0289116a17f2fac32afaeb1308bcf2ab96f4 (patch) | |
tree | 20fd39c44a9bffa6b63fd4dbca07a3a85cf91a1f | |
parent | 843af2a132c727c8d561af867cb86c50aa710478 (diff) | |
download | gcc-5cdd0289116a17f2fac32afaeb1308bcf2ab96f4.tar.gz |
* tree-into-ssa.c (mark_def_sites): Correct minor typo in function
comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@105435 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-into-ssa.c | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dd60a6eeaeb..5cf5a4982e6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-10-15 Ranjit Mathew <rmathew@gcc.gnu.org> + + * tree-into-ssa.c (mark_def_sites): Correct minor typo in + function comment. + 2005-10-14 Volker Reichelt <reichelt@igpm.rwth-aachen.de> PR c/23439 diff --git a/gcc/tree-into-ssa.c b/gcc/tree-into-ssa.c index 97ddc73ab54..812e9a96c8a 100644 --- a/gcc/tree-into-ssa.c +++ b/gcc/tree-into-ssa.c @@ -619,8 +619,7 @@ add_new_name_mapping (tree new, tree old) WALK_DATA->GLOBAL_DATA->KILLS. 2- If S uses a variable VAR and there is no preceding kill of VAR, - then it is marked in marked in the LIVEIN_BLOCKS bitmap - associated with VAR. + then it is marked in the LIVEIN_BLOCKS bitmap associated with VAR. This information is used to determine which variables are live across block boundaries to reduce the number of PHI nodes |