Commit 79323c50 by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

* doc/extend.texi (Other Builtins): Fix typo in last change.

From-SVN: r44624
parent 7c262518
2001-08-04 Hans-Peter Nilsson <hp@bitrange.com>
* doc/extend.texi (Other Builtins): Fix typo in last change.
2001-08-03 Richard Henderson <rth@redhat.com> 2001-08-03 Richard Henderson <rth@redhat.com>
* target.h (gcc_target): Add asm_out.named_section, * target.h (gcc_target): Add asm_out.named_section,
......
...@@ -3894,10 +3894,10 @@ You may also use @code{__builtin_constant_p} in initializers for static ...@@ -3894,10 +3894,10 @@ You may also use @code{__builtin_constant_p} in initializers for static
data. For instance, you can write 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,
/* ... */ /* ... */
}; @};
@end smallexample @end smallexample
@noindent @noindent
......
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