Commit a7ceba73 by Andrew Pinski Committed by Andrew Pinski

objc.texi (Type encoding): Add documentation about encoding complex types and _Bool.

2005-12-17  Andrew Pinski  <pinskia@physics.uc.edu>

        * doc/objc.texi (Type encoding): Add documentation about encoding
        complex types and _Bool.

From-SVN: r108737
parent 858904db
2005-12-17 Andrew Pinski <pinskia@physics.uc.edu>
* doc/objc.texi (Type encoding): Add documentation about encoding
complex types and _Bool.
2005-12-17 Paul Brook <paul@codesourcery.com> 2005-12-17 Paul Brook <paul@codesourcery.com>
* config/m68k/m68k.md (m68k_output_function_prologue): Always call * config/m68k/m68k.md (m68k_output_function_prologue): Always call
......
...@@ -179,6 +179,8 @@ The types are encoded in the following way: ...@@ -179,6 +179,8 @@ The types are encoded in the following way:
@c @sp 1 @c @sp 1
@multitable @columnfractions .25 .75 @multitable @columnfractions .25 .75
@item @code{_Bool}
@tab @code{B}
@item @code{char} @item @code{char}
@tab @code{c} @tab @code{c}
@item @code{unsigned char} @item @code{unsigned char}
...@@ -215,6 +217,8 @@ The types are encoded in the following way: ...@@ -215,6 +217,8 @@ The types are encoded in the following way:
@tab @code{*} @tab @code{*}
@item unknown type @item unknown type
@tab @code{?} @tab @code{?}
@item Complex types
@tab @code {j} followed by the inner type. For an example _Complex double is encoded as "jd".
@item bit-fields @item bit-fields
@tab @code{b} followed by the starting position of the bit-field, the type of the bit-field and the size of the bit-field (the bit-fields encoding was changed from the NeXT's compiler encoding, see below) @tab @code{b} followed by the starting position of the bit-field, the type of the bit-field and the size of the bit-field (the bit-fields encoding was changed from the NeXT's compiler encoding, see below)
@end multitable @end multitable
......
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