diff options
author | Craig Burley <craig@jcb-sc.com> | 1999-04-19 18:16:33 +0000 |
---|---|---|
committer | Craig Burley <burley@gcc.gnu.org> | 1999-04-19 14:16:33 -0400 |
commit | 5b916f262a827a5b81cc489b931b538bf972e918 (patch) | |
tree | 019d15633eb1045ceb0a0f3c2408c49acec0ea2a | |
parent | e8fc7396390399d4bf00415ed0cbb244bdeeefc1 (diff) | |
download | gcc-5b916f262a827a5b81cc489b931b538bf972e918.zip gcc-5b916f262a827a5b81cc489b931b538bf972e918.tar.gz gcc-5b916f262a827a5b81cc489b931b538bf972e918.tar.bz2 |
fix typo in comment
From-SVN: r26551
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree.def | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d3dc6a2..5dc1f09 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Apr 19 21:13:02 1999 Craig Burley <craig@jcb-sc.com> + + * tree.def (BLOCK): Fix typo in comment. + 1999-04-19 14:51 -0400 Zack Weinberg <zack@rabi.columbia.edu> * cpplib.c (output_line_command): Drop CONDITIONAL argument. diff --git a/gcc/tree.def b/gcc/tree.def index fe84f27..64fe0e4 100644 --- a/gcc/tree.def +++ b/gcc/tree.def @@ -82,7 +82,7 @@ DEFTREECODE (TREE_VEC, "tree_vec", 'x', 2) outermost scope of a particular inlining of a function). BLOCK_ABSTRACT is non-zero if the block represents an abstract instance of a block (i.e. one which is nested within an abstract - instance of a inline function). */ + instance of an inline function). */ DEFTREECODE (BLOCK, "block", 'b', 0) /* Each data type is represented by a tree node whose code is one of |