aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-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 cee478f..f2d8f07 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2002-06-25 Loren J. Rittle <ljrittle@acm.org>
+
+ * doc/extend.texi: Fix formatting of last checkin.
+
2002-06-25 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* config/alpha/alpha.h (TARGET_CPU_CPP_BUILTINS): Remove leading
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index be49067..dd776b1 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -5118,11 +5118,11 @@ constant is of the same type as the variable it is initializing. The
@code{vector bool} type is deprecated and will be discontinued in
further revisions. Use @code{vector signed} instead. If @code{signed}
or @code{unsigned} is omitted, the vector type will default to
-@{signed}. Lastly, all overloaded functions are implemented with macros
+@code{signed}. Lastly, all overloaded functions are implemented with macros
for the C implementation. So code the following example will not work:
@smallexample
- vec_add ((vector signed int){1, 2, 3, 4}, foo);
+ vec_add ((vector signed int)@{1, 2, 3, 4@}, foo);
@end smallexample
Since vec_add is a macro, the vector constant in the above example will