diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2002-06-25 23:41:25 +0000 |
---|---|---|
committer | Loren J. Rittle <ljrittle@gcc.gnu.org> | 2002-06-25 23:41:25 +0000 |
commit | 8254cb4580f6f59957c8849d859073452499b704 (patch) | |
tree | 78658ae6edc812d3e4257443f952d67127b48010 | |
parent | f9ee10ab66e0dee87b1efd1976573b64e79c890a (diff) | |
download | gcc-8254cb4580f6f59957c8849d859073452499b704.zip gcc-8254cb4580f6f59957c8849d859073452499b704.tar.gz gcc-8254cb4580f6f59957c8849d859073452499b704.tar.bz2 |
* doc/extend.texi: Fix formatting of last checkin.
From-SVN: r54999
-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 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 |