diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-13 15:33:36 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-13 15:33:36 +0000 |
commit | 3d6aa0718978b7d33a0bd7ec87518a209a991db3 (patch) | |
tree | 85efb66cebb1bcf4e60db8333aa70691e24270d5 /gcc | |
parent | 5bbaf5ca6c70119a37f10b64ca37cc16496120ec (diff) | |
download | gcc-3d6aa0718978b7d33a0bd7ec87518a209a991db3.tar.gz |
* tree.h: Fix a comment typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90581 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8c5c3294f3f..13d8e66a19c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-11-13 Kazu Hirata <kazu@cs.umass.edu> + + * tree.h: Fix a comment typo. + 2004-11-13 Steven Bosscher <stevenb@suse.de> * cse.c (CHEAP_REGNO): Redefine using REGNO_PTR_FRAME_P and diff --git a/gcc/tree.h b/gcc/tree.h index e79470001cd..5f49c204403 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -1235,7 +1235,7 @@ struct tree_vec GTY(()) /* Operand 2 has two uses, it may either be a LABEL_DECL node or a another CASE_LABEL_EXPR node. This accessor gets direct access to that operand. Use it when you want to assign a value to - operand 2 or when you want to conditionalalize actions based on + operand 2 or when you want to conditionalize actions based on whether operand 2 is a LABEL_DELC or CASE_LABEL_EXPR. */ #define CASE_LEADER_OR_LABEL(NODE) TREE_OPERAND ((NODE), 2) |