diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-05-25 20:18:41 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-05-25 20:18:41 +0000 |
commit | 04d2be8e6d43fcfa885caf4a70a38a479c0faaba (patch) | |
tree | 4b527778da2e5a352166db18ffd7169da770ce6d /gcc/tree.def | |
parent | 7b6e506ee012b202851133cac4bfbd32cef529fb (diff) | |
download | gcc-04d2be8e6d43fcfa885caf4a70a38a479c0faaba.zip gcc-04d2be8e6d43fcfa885caf4a70a38a479c0faaba.tar.gz gcc-04d2be8e6d43fcfa885caf4a70a38a479c0faaba.tar.bz2 |
tree.def: Fix typos.
* tree.def: Fix typos.
* doc/install.texi: Likewise.
From-SVN: r53875
Diffstat (limited to 'gcc/tree.def')
-rw-r--r-- | gcc/tree.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree.def b/gcc/tree.def index cd0f1c2..705252f 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 |