diff options
Diffstat (limited to 'contrib/gcc/doc/objc.texi')
-rw-r--r-- | contrib/gcc/doc/objc.texi | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/contrib/gcc/doc/objc.texi b/contrib/gcc/doc/objc.texi index 481b51c09b852..c15c1acf84844 100644 --- a/contrib/gcc/doc/objc.texi +++ b/contrib/gcc/doc/objc.texi @@ -1,5 +1,5 @@ @c Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, -@c 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +@c 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. @c This is part of the GCC manual. @c For copying conditions, see the file gcc.texi. @@ -56,7 +56,7 @@ FileStream *Stderr = nil; Stderr = [[FileStream new] initWithFd:2]; @} -/* Other methods here */ +/* @r{Other methods here} */ @@end @end smallexample @@ -84,7 +84,7 @@ method instead of @code{+initialize}: Stderr = [[FileStream new] initWithFd:2]; @} -/* Other methods here */ +/* @r{Other methods here} */ @@end @end smallexample @@ -179,6 +179,8 @@ The types are encoded in the following way: @c @sp 1 @multitable @columnfractions .25 .75 +@item @code{_Bool} +@tab @code{B} @item @code{char} @tab @code{c} @item @code{unsigned char} @@ -215,6 +217,8 @@ The types are encoded in the following way: @tab @code{*} @item unknown type @tab @code{?} +@item Complex types +@tab @code{j} followed by the inner type. For example @code{_Complex double} is encoded as "jd". @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) @end multitable |