From: Loren J. Rittle Date: Tue, 25 Jun 2002 23:41:25 +0000 (+0000) Subject: * doc/extend.texi: Fix formatting of last checkin. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8254cb4580f6f59957c8849d859073452499b704;p=gcc.git * doc/extend.texi: Fix formatting of last checkin. From-SVN: r54999 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cee478f4bb4..f2d8f0777ca 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-06-25 Loren J. Rittle + + * doc/extend.texi: Fix formatting of last checkin. + 2002-06-25 Rainer Orth * config/alpha/alpha.h (TARGET_CPU_CPP_BUILTINS): Remove leading diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index be490678360..dd776b1e7e4 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