diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-06-29 15:40:49 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-06-29 15:40:49 -0600 |
commit | 9ec36da574f8272705a3ead59bbd289f23793429 (patch) | |
tree | 1ec056a51ca5f7af70d48889aab8bbf9c1f9d9aa /gcc/objc | |
parent | ad2c71b764c066471608c85695392c7fb49c7bc7 (diff) | |
download | gcc-9ec36da574f8272705a3ead59bbd289f23793429.zip gcc-9ec36da574f8272705a3ead59bbd289f23793429.tar.gz gcc-9ec36da574f8272705a3ead59bbd289f23793429.tar.bz2 |
* Merge from gcc2 June 9, 1998 snapshot. See ChangeLog.13 for
details.
From-SVN: r20808
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/objc-api.h | 2 | ||||
-rw-r--r-- | gcc/objc/sendmsg.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gcc/objc/objc-api.h b/gcc/objc/objc-api.h index 5ca8865..9eb000b 100644 --- a/gcc/objc/objc-api.h +++ b/gcc/objc/objc-api.h @@ -301,7 +301,7 @@ struct objc_protocol_list { /* ** The class number of this class. This must be the same for both the -** class and it's meta class object +** class and its meta class object */ #define CLS_GETNUMBER(cls) (__CLS_INFO(cls) >> (HOST_BITS_PER_LONG/2)) #define CLS_SETNUMBER(cls, num) \ diff --git a/gcc/objc/sendmsg.c b/gcc/objc/sendmsg.c index f0d3957..245b8b9 100644 --- a/gcc/objc/sendmsg.c +++ b/gcc/objc/sendmsg.c @@ -1,5 +1,5 @@ /* GNU Objective C Runtime message lookup - Copyright (C) 1993, 1995, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1993, 1995, 1996, 1997, 1998 Free Software Foundation, Inc. Contributed by Kresten Krab Thorup This file is part of GNU CC. @@ -343,7 +343,7 @@ __objc_install_dispatch_table_for_class (Class class) { Class super; - /* If the class has not yet had it's class links resolved, we must + /* If the class has not yet had its class links resolved, we must re-compute all class links */ if(!CLS_ISRESOLV(class)) __objc_resolve_class_links(); |