diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-14 11:08:04 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-14 11:08:04 +0000 |
commit | 8ae77b3c9fe7df48ab83868d0972784bc67d96c6 (patch) | |
tree | a91351f06f928eb1e5eab66beeaf0220a84e13ac /gcc/doc/c-tree.texi | |
parent | 43980eb65ff268c6af725b52b34fdabb20cb3568 (diff) | |
download | gcc-8ae77b3c9fe7df48ab83868d0972784bc67d96c6.tar.gz |
* doc/c-tree.texi, doc/contrib.texi, doc/extend.texi,
doc/gcc.texi, doc/gcov.texi, doc/install-old.texi,
doc/invoke.texi, doc/md.texi, doc/rtl.texi, doc/tm.texi: Use more
logical markup. Use TeX quotes and dashes. Use @dots{} and
@minus{}. Avoid spaces inside @var. Update last modification
date in gcc.texi.
* doc/gcc.1, doc/gcov.1: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43369 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/c-tree.texi')
-rw-r--r-- | gcc/doc/c-tree.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/doc/c-tree.texi b/gcc/doc/c-tree.texi index d5a786bf124..9c4004637b7 100644 --- a/gcc/doc/c-tree.texi +++ b/gcc/doc/c-tree.texi @@ -1390,7 +1390,7 @@ void process_stmt (stmt) /* More processing here. */ break; - ... + @dots{} @} stmt = TREE_CHAIN (stmt); @@ -1553,7 +1553,7 @@ evaluated, the statement should be executed. Then, the This representation is used to handle C++ code like this: @example -if (int i = 7) ... +if (int i = 7) @dots{} @end example where there is a new local variable (or variables) declared within the @@ -1575,7 +1575,7 @@ the @code{LABEL_DECL} with @code{DECL_NAME}. If the function uses the G++ ``named return value'' extension, meaning that the function has been defined like: @example -S f(int) return s @{...@} +S f(int) return s @{@dots{}@} @end example then there will be a @code{RETURN_INIT}. There is never a named returned value for a constructor. The first argument to the @@ -1910,7 +1910,7 @@ floating-point value. The single operand will have integral type, while the complete expression will have a floating-point type. FIXME: How is the operand supposed to be rounded? Is this dependent on --mieee? +@option{-mieee}? @item COMPLEX_EXPR These nodes are used to represent complex numbers constructed from two |