Commit 8254cb45 by Loren J. Rittle Committed by Loren J. Rittle

* doc/extend.texi: Fix formatting of last checkin.

From-SVN: r54999
parent f9ee10ab
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
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment