summaryrefslogtreecommitdiff
path: root/gcc/tree-flow-inline.h
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-29 15:06:07 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-29 15:06:07 +0000
commit51384808639e53e053caf319e0b84b9d8ceed7fd (patch)
tree53b2bf17c9be2fae7bff6c994de299e07f052fb5 /gcc/tree-flow-inline.h
parent48a37c5989e471d1dcbac4ee3b300822440421a1 (diff)
downloadgcc-51384808639e53e053caf319e0b84b9d8ceed7fd.tar.gz
* tree-flow-inline.h: Fix a comment typo.
* doc/tree-ssa.texi: Fix a typo. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98992 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-flow-inline.h')
-rw-r--r--gcc/tree-flow-inline.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h
index 87a243daa3c..d8a0b4b727c 100644
--- a/gcc/tree-flow-inline.h
+++ b/gcc/tree-flow-inline.h
@@ -203,7 +203,7 @@ static inline void
link_imm_use_to_list (ssa_imm_use_t *linknode, ssa_imm_use_t *list)
{
/* Link the new node at the head of the list. If we are in the process of
- traversing the list, we wont visit any new nodes added to it. */
+ traversing the list, we won't visit any new nodes added to it. */
linknode->prev = list;
linknode->next = list->next;
list->next->prev = linknode;