Commit 04a5176a by Art Haas Committed by Matt Kraai

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
parent e50b19ce
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> 2002-06-20 Steve Ellcey <sje@cup.hp.com>
* gcc/config.gcc (ia64*-*-hpux*): Set use_collect2 to no. * gcc/config.gcc (ia64*-*-hpux*): Set use_collect2 to no.
Set float_format to i128. Set float_format to i128.
......
...@@ -4683,7 +4683,7 @@ data. For instance, you can write ...@@ -4683,7 +4683,7 @@ data. For instance, you can write
@smallexample @smallexample
static const int table[] = @{ static const int table[] = @{
__builtin_constant_p (EXPRESSION) ? (EXPRESSION) : -1, __builtin_constant_p (EXPRESSION) ? (EXPRESSION) : -1,
/* ... */ /* @dots{} */
@}; @};
@end smallexample @end smallexample
...@@ -4759,7 +4759,7 @@ for (i = 0; i < n; i++) ...@@ -4759,7 +4759,7 @@ for (i = 0; i < n; i++)
a[i] = a[i] + b[i]; a[i] = a[i] + b[i];
__builtin_prefetch (&a[i+j], 1, 1); __builtin_prefetch (&a[i+j], 1, 1);
__builtin_prefetch (&b[i+j], 0, 1); __builtin_prefetch (&b[i+j], 0, 1);
/* ... */ /* @dots{} */
@} @}
@end smallexample @end smallexample
......
...@@ -2660,7 +2660,7 @@ definition used does not matter. ...@@ -2660,7 +2660,7 @@ definition used does not matter.
This macro defines the operation used when something is pushed This macro defines the operation used when something is pushed
on the stack. In RTL, a push operation will be 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}, The choices are @code{PRE_DEC}, @code{POST_DEC}, @code{PRE_INC},
and @code{POST_INC}. Which of these is correct depends on and @code{POST_INC}. Which of these is correct depends on
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment