summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-25 20:18:41 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-25 20:18:41 +0000
commit428d04ecd254359f5b89024ff8359e9fce94c4d5 (patch)
tree4b527778da2e5a352166db18ffd7169da770ce6d
parentc87e09ad963380fd0c5f97fcfeec3341a104fda5 (diff)
downloadgcc-428d04ecd254359f5b89024ff8359e9fce94c4d5.tar.gz
* tree.def: Fix typos.
* doc/install.texi: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53875 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/doc/install.texi2
-rw-r--r--gcc/tree.def4
3 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b1c1dd3fb3d..891d678648e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-25 Kazu Hirata <kazu@cs.umass.edu>
+
+ * tree.def: Fix typos.
+ * doc/install.texi: Likewise.
+
2002-05-25 Richard Henderson <rth@redhat.com>
* configure.in (HAVE_AS_TLS): Add ia64 test.
diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi
index 8b927f09c3c..a81fb86f68a 100644
--- a/gcc/doc/install.texi
+++ b/gcc/doc/install.texi
@@ -2311,7 +2311,7 @@ is not really supported on the platform. The native @command{as} and
@command{ld} still are recommended. The native AIX tools do
interoperate with GCC@.
-Building @file{libstdc++.a} requires a fix for a AIX Assembler bug
+Building @file{libstdc++.a} requires a fix for an AIX Assembler bug
APAR IY26685 (AIX 4.3) or APAR IY25528 (AIX 5.1).
Linking executables and shared libraries may produce warnings of
diff --git a/gcc/tree.def b/gcc/tree.def
index cd0f1c298c3..705252fa171 100644
--- a/gcc/tree.def
+++ b/gcc/tree.def
@@ -643,7 +643,7 @@ DEFTREECODE (BIT_NOT_EXPR, "bit_not_expr", '1', 1)
needed or not (for side effects). The operand may have
BOOLEAN_TYPE or INTEGER_TYPE. In either case, the argument will be
either zero or one. For example, a TRUTH_NOT_EXPR will never have
- a INTEGER_TYPE VAR_DECL as its argument; instead, a NE_EXPR will be
+ an INTEGER_TYPE VAR_DECL as its argument; instead, a NE_EXPR will be
used to compare the VAR_DECL to zero, thereby obtaining a node with
value zero or one. */
DEFTREECODE (TRUTH_ANDIF_EXPR, "truth_andif_expr", 'e', 2)
@@ -776,7 +776,7 @@ DEFTREECODE (VA_ARG_EXPR, "va_arg_expr", 'e', 1)
DEFTREECODE (TRY_CATCH_EXPR, "try_catch_expr", 'e', 2)
/* Evaluate the first operand.
- The second operand is a a cleanup expression which is evaluated
+ The second operand is a cleanup expression which is evaluated
before an exit (normal, exception, or jump out) from this expression.
Like a CLEANUP_POINT_EXPR/WITH_CLEANUP_EXPR combination, but those