summaryrefslogtreecommitdiff
path: root/gcc/treelang
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2002-09-27 12:48:07 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2002-09-27 12:48:07 +0000
commitf712a0dcd3010d64361b11d5f7b7d71700f69aab (patch)
treec2f7682329bf354ca96d9ae19d6a6cfe4312c16a /gcc/treelang
parent5d822c0058e6e4da7d30bd003fd9696370a88aef (diff)
downloadgcc-f712a0dcd3010d64361b11d5f7b7d71700f69aab.tar.gz
* LANGUAGES: Follow spelling conventions.
* rtl.def: Likewise. * sbitmap.c: Likewise. * sched-int.h: Likewise. * sched-rgn.c: Likewise. * sibcall.c: Likewise. * simplify-rtx.c: Likewise. * ssa.c: Likewise. * stab.def: Likewise. * stmt.c: Likewise. * stor-layout.c: Likewise. * target.h: Likewise. * timevar.c: Likewise. * toplev.c: Likewise. * tree-dump.c: Likewise. * tree-inline.c: Likewise. * tree.c: Likewise. * tree.def: Likewise. * tree.h: Likewise. * unroll.c: Likewise. * varasm.c: Likewise. * vmsdbgout.c: Likewise. * treelang/treelang.texi: Likewise. * treelang/treetree.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57587 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/treelang')
-rw-r--r--gcc/treelang/treelang.texi2
-rw-r--r--gcc/treelang/treetree.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/treelang/treelang.texi b/gcc/treelang/treelang.texi
index c2c480f5c0a..52bcb7ddd23 100644
--- a/gcc/treelang/treelang.texi
+++ b/gcc/treelang/treelang.texi
@@ -601,7 +601,7 @@ statement: if_statement OR expression_statement OR return_statement
if_statement: if (expression) @{ statements @} else @{ statements @}
The first lot of statements is executed if the expression is
-non-zero. Otherwise the second lot of statements is executed. Either
+nonzero. Otherwise the second lot of statements is executed. Either
list of statements may be empty, but both sets of braces and the else must be present.
@smallexample
diff --git a/gcc/treelang/treetree.c b/gcc/treelang/treetree.c
index 9ee92ba5d25..248d4870b31 100644
--- a/gcc/treelang/treetree.c
+++ b/gcc/treelang/treetree.c
@@ -199,7 +199,7 @@ tree_code_if_start (tree exp, unsigned char* filename, int lineno)
exp,
build1 (CONVERT_EXPR, TREE_TYPE (exp), integer_zero_node));
emit_line_note ((const char *)filename, lineno); /* Output the line number information. */
- expand_start_cond (cond_exp, /* Exit-able if non zero. */ 0);
+ expand_start_cond (cond_exp, /* Exit-able if nonzero. */ 0);
}
/* Output the code for the else of an if statement. The else occurred