* doc/rtl.texi: Use a table to display RTL format characters.
authorSteve Christiansen <smc@us.ibm.com>
Thu, 6 Dec 2001 11:27:42 +0000 (11:27 +0000)
committerGerald Pfeifer <gerald@gcc.gnu.org>
Thu, 6 Dec 2001 11:27:42 +0000 (11:27 +0000)
From-SVN: r47711

gcc/ChangeLog
gcc/doc/rtl.texi

index 3ef955c2e38b5fb057ebd77ce15f26dae991564f..b026518db47b5323d634723ef013884c207ad034 100644 (file)
@@ -1,3 +1,7 @@
+2001-10-26  Steve Christiansen  <smc@us.ibm.com>
+
+       * doc/rtl.texi: Use a table to display RTL format characters.
+
 2001-12-06  Bo Thorsen  <bo@suse.co.uk>
 
        * config/i386/linux64.h (LINK_SPEC): Correct name of dynamic linker.
index c0c2cda8c7f92522a4e1b00af883cadd9a46ccbc..79c7deb47e16393766ed535241dc628774b516ba 100644 (file)
@@ -194,15 +194,31 @@ chain, such as @code{NOTE}, @code{BARRIER}, and @code{CODE_LABEL}.
 @end table
 
 @cindex RTL format
-For each expression type @file{rtl.def} specifies the number of
-contained objects and their kinds, with four possibilities: @samp{e} for
-expression (actually a pointer to an expression), @samp{i} for integer,
-@samp{w} for wide integer, @samp{s} for string, and @samp{E} for vector
-of expressions.  The sequence of letters for an expression code is
-called its @dfn{format}.  For example, the format of @code{subreg} is
-@samp{ei}.
+For each expression code, @file{rtl.def} specifies the number of
+contained objects and their kinds using a sequence of characters
+called the @dfn{format} of the expression code.  For example,
+the format of @code{subreg} is @samp{ei}.
 
 @cindex RTL format characters
+These are the most commonly used format characters:
+
+@table @code
+@item e
+An expression (actually a pointer to an expression).
+
+@item i
+An integer.
+
+@item w
+A wide integer.
+
+@item s
+A string.
+
+@item E
+A vector of expressions.
+@end table
+
 A few other format characters are used occasionally:
 
 @table @code