* doc/extend.texi (Other Builtins): Fix typo in last change.
authorHans-Peter Nilsson <hp@bitrange.com>
Sat, 4 Aug 2001 02:42:04 +0000 (02:42 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Sat, 4 Aug 2001 02:42:04 +0000 (02:42 +0000)
From-SVN: r44624

gcc/ChangeLog
gcc/doc/extend.texi

index c88ff2386e689199a9b4a5c209bae9a486193e4c..542277ea0e2f479d2b8557cd5258c64ad79d8fd0 100644 (file)
@@ -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, 
index b7c24961682c5da3277e4c1f0ec29f10c79100ed..293bce69596f8b8019c68d35263e66ac922c50bc 100644 (file)
@@ -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