aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArt Haas <ahaas@neosoft.com>2002-06-24 16:45:21 +0000
committerMatt Kraai <kraai@gcc.gnu.org>2002-06-24 16:45:21 +0000
commit04a5176aecf0c6d490283ffc3dc9529924457415 (patch)
tree3f9bb081524e66e764e7de1787833477d485376c
parente50b19cef333ab672a98a7b3a78f9d4f3f7b939e (diff)
downloadgcc-04a5176aecf0c6d490283ffc3dc9529924457415.zip
gcc-04a5176aecf0c6d490283ffc3dc9529924457415.tar.gz
gcc-04a5176aecf0c6d490283ffc3dc9529924457415.tar.bz2
extend.texi (Other Builtins): Change `...' to `@dots{}'.
2002-06-24 Art Haas <ahaas@neosoft.com> * doc/extend.texi (Other Builtins): Change `...' to `@dots{}'. * doc/tm.texi (Frame Layout): Likewise. From-SVN: r54957
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/doc/extend.texi4
-rw-r--r--gcc/doc/tm.texi2
3 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 665473f..64db988 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2002-06-24 Art Haas <ahaas@neosoft.com>
+
+ * doc/extend.texi (Other Builtins): Change `...' to `@dots{}'.
+ * doc/tm.texi (Frame Layout): Likewise.
+
2002-06-20 Steve Ellcey <sje@cup.hp.com>
* gcc/config.gcc (ia64*-*-hpux*): Set use_collect2 to no.
Set float_format to i128.
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 1da05ad..0804614 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -4683,7 +4683,7 @@ data. For instance, you can write
@smallexample
static const int table[] = @{
__builtin_constant_p (EXPRESSION) ? (EXPRESSION) : -1,
- /* ... */
+ /* @dots{} */
@};
@end smallexample
@@ -4759,7 +4759,7 @@ for (i = 0; i < n; i++)
a[i] = a[i] + b[i];
__builtin_prefetch (&a[i+j], 1, 1);
__builtin_prefetch (&b[i+j], 0, 1);
- /* ... */
+ /* @dots{} */
@}
@end smallexample
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi
index 2d54603..536b02c 100644
--- a/gcc/doc/tm.texi
+++ b/gcc/doc/tm.texi
@@ -2660,7 +2660,7 @@ definition used does not matter.
This macro defines the operation used when something is pushed
on the stack. In RTL, a push operation will be
-@code{(set (mem (STACK_PUSH_CODE (reg sp))) ...)}
+@code{(set (mem (STACK_PUSH_CODE (reg sp))) @dots{})}
The choices are @code{PRE_DEC}, @code{POST_DEC}, @code{PRE_INC},
and @code{POST_INC}. Which of these is correct depends on