diff options
author | ljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-25 23:41:25 +0000 |
---|---|---|
committer | ljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-25 23:41:25 +0000 |
commit | 17e01dc5312385e3f135fd4b67272ab6203439d5 (patch) | |
tree | 78658ae6edc812d3e4257443f952d67127b48010 /gcc/doc | |
parent | 522358f63659a25fa36c92f1669b3241fe5f2548 (diff) | |
download | gcc-17e01dc5312385e3f135fd4b67272ab6203439d5.tar.gz |
* doc/extend.texi: Fix formatting of last checkin.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54999 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/extend.texi | 4 |
1 files changed, 2 insertions, 2 deletions
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 |