aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc/rtl.texi
diff options
context:
space:
mode:
authorMatt Kraai <kraai@alumni.cmu.edu>2003-07-31 01:32:24 +0000
committerMatt Kraai <kraai@gcc.gnu.org>2003-07-31 01:32:24 +0000
commit4bd0bee99e24c35d61d307f2afffd4b148448c44 (patch)
treec042b968581207ca94b4d3df8abdedccea28267a /gcc/doc/rtl.texi
parent7f02cb5ccd8f850be7cdae350c08057a1dc51af5 (diff)
downloadgcc-4bd0bee99e24c35d61d307f2afffd4b148448c44.zip
gcc-4bd0bee99e24c35d61d307f2afffd4b148448c44.tar.gz
gcc-4bd0bee99e24c35d61d307f2afffd4b148448c44.tar.bz2
c-tree.texi: Normalize spellings of "lowercase" and "uppercase".
* 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. From-SVN: r69988
Diffstat (limited to 'gcc/doc/rtl.texi')
-rw-r--r--gcc/doc/rtl.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/doc/rtl.texi b/gcc/doc/rtl.texi
index ca3c2de..94147db 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)