diff options
author | Janis Johnson <janis187@us.ibm.com> | 2002-09-04 17:35:59 +0000 |
---|---|---|
committer | Janis Johnson <janis@gcc.gnu.org> | 2002-09-04 17:35:59 +0000 |
commit | 478c9e72c61443a0fc32841d05c2251246de88c8 (patch) | |
tree | cda38963326438a28584b3d0f047c0ae365275fc /gcc/doc/rtl.texi | |
parent | 7b98d4549b34d8fe57170ce9fb57f2c1508516dc (diff) | |
download | gcc-478c9e72c61443a0fc32841d05c2251246de88c8.zip gcc-478c9e72c61443a0fc32841d05c2251246de88c8.tar.gz gcc-478c9e72c61443a0fc32841d05c2251246de88c8.tar.bz2 |
c-tree.texi: Fix overfull hboxes.
2002-09-04 Janis Johnson <janis187@us.ibm.com>
* doc/c-tree.texi: Fix overfull hboxes.
* doc/cppopts.texi: Ditto.
* doc/extend.texi: Ditto.
* doc/gty.texi: Ditto.
* doc/invoke.texi: Ditto.
* doc/makefile.texi: Ditto.
* doc/rtl.texi: Ditto.
* doc/standards.texi: Ditto.
* doc/tm.texi: Ditto.
From-SVN: r56802
Diffstat (limited to 'gcc/doc/rtl.texi')
-rw-r--r-- | gcc/doc/rtl.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/doc/rtl.texi b/gcc/doc/rtl.texi index 99ad12c..5a016be 100644 --- a/gcc/doc/rtl.texi +++ b/gcc/doc/rtl.texi @@ -2355,11 +2355,11 @@ An hypothetical example might be a pattern for an addition that can either wrap around or use saturating addition depending on the value of a special control register: -@example +@smallexample (parallel [(set (reg:SI 2) (unspec:SI [(reg:SI 3) (reg:SI 4)] 0)) (use (reg:SI 1))]) -@end example +@end smallexample @noindent @@ -2588,10 +2588,10 @@ where @var{z} is an index register and @var{i} is a constant. Here is an example of its use: -@example +@smallexample (mem:SF (post_modify:SI (reg:SI 42) (plus (reg:SI 42) (reg:SI 48)))) -@end example +@end smallexample This says to modify pseudo register 42 by adding the contents of pseudo register 48 to it, after the use of what ever 42 points to. |