diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/doc/extend.texi | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c88ff23..542277e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +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> * target.h (gcc_target): Add asm_out.named_section, diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index b7c2496..293bce6 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -3894,10 +3894,10 @@ You may also use @code{__builtin_constant_p} in initializers for static data. For instance, you can write @smallexample -static const int table[] = { +static const int table[] = @{ __builtin_constant_p (EXPRESSION) ? (EXPRESSION) : -1, /* ... */ -}; +@}; @end smallexample @noindent |