diff options
author | kraai <kraai@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-31 01:32:24 +0000 |
---|---|---|
committer | kraai <kraai@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-31 01:32:24 +0000 |
commit | f613a8c94e398b64930a5606b655ed05dc549a0d (patch) | |
tree | c042b968581207ca94b4d3df8abdedccea28267a /gcc/doc/rtl.texi | |
parent | 2f2fc36b27f9cc0e2096941731028d6e3e637df3 (diff) | |
download | gcc-f613a8c94e398b64930a5606b655ed05dc549a0d.tar.gz |
* doc/c-tree.texi: Normalize spellings of "lowercase" and
"uppercase".
* doc/cpp.texi: Likewise.
* doc/md.texi: Likewise.
* doc/rtl.texi: Likewise.
* doc/tm.texi: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69988 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/rtl.texi')
-rw-r--r-- | gcc/doc/rtl.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/doc/rtl.texi b/gcc/doc/rtl.texi index ca3c2de9700..94147dbfd99 100644 --- a/gcc/doc/rtl.texi +++ b/gcc/doc/rtl.texi @@ -99,7 +99,7 @@ null pointers are used instead. @findex PUT_CODE Expressions are classified by @dfn{expression codes} (also called RTX codes). The expression code is a name defined in @file{rtl.def}, which is -also (in upper case) a C enumeration constant. The possible expression +also (in uppercase) a C enumeration constant. The possible expression codes and their meanings are machine-independent. The code of an RTX can be extracted with the macro @code{GET_CODE (@var{x})} and altered with @code{PUT_CODE (@var{x}, @var{newcode})}. @@ -118,8 +118,8 @@ Expressions are written as parentheses containing the name of the expression type, its flags and machine mode if any, and then the operands of the expression (separated by spaces). -Expression code names in the @samp{md} file are written in lower case, -but when they appear in C code they are written in upper case. In this +Expression code names in the @samp{md} file are written in lowercase, +but when they appear in C code they are written in uppercase. In this manual, they are shown as follows: @code{const_int}. @cindex (nil) |