aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@bitrange.com>2001-08-04 02:42:04 +0000
committerHans-Peter Nilsson <hp@gcc.gnu.org>2001-08-04 02:42:04 +0000
commit79323c50e9b7f05a80f8f22426eb7031f3602ef9 (patch)
tree5c0830c61cce734cd59efef205eef2065c4f4f3b
parent7c262518a45491adb8a04f5ec4006dbe957ab7a4 (diff)
downloadgcc-79323c50e9b7f05a80f8f22426eb7031f3602ef9.zip
gcc-79323c50e9b7f05a80f8f22426eb7031f3602ef9.tar.gz
gcc-79323c50e9b7f05a80f8f22426eb7031f3602ef9.tar.bz2
* doc/extend.texi (Other Builtins): Fix typo in last change.
From-SVN: r44624
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/doc/extend.texi4
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