aboutsummaryrefslogtreecommitdiff
path: root/gcc/objc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-05-16 07:09:02 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1995-05-16 07:09:02 -0400
commit8e3dc5f661b6543703226891314f84a6a01d495e (patch)
tree6f8c39efddcb0b40805f0e1d0aa9d957a0762f84 /gcc/objc
parent7154457b7a81b00b10315ddcafb7144c11a2ef44 (diff)
downloadgcc-8e3dc5f661b6543703226891314f84a6a01d495e.zip
gcc-8e3dc5f661b6543703226891314f84a6a01d495e.tar.gz
gcc-8e3dc5f661b6543703226891314f84a6a01d495e.tar.bz2
(__objc_init_install_dtable): Fix misspelling in name of local label
`already_initialized'. From-SVN: r9708
Diffstat (limited to 'gcc/objc')
-rw-r--r--gcc/objc/sendmsg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/objc/sendmsg.c b/gcc/objc/sendmsg.c
index 9f52c8d..90dd4c6 100644
--- a/gcc/objc/sendmsg.c
+++ b/gcc/objc/sendmsg.c
@@ -161,7 +161,7 @@ void __objc_init_dispatch_tables()
static void __objc_init_install_dtable(id receiver, SEL op)
{
- __label__ allready_initialized;
+ __label__ already_initialized;
IMP imp;
void* args;
void* result;
@@ -169,7 +169,7 @@ static void __objc_init_install_dtable(id receiver, SEL op)
/* This may happen, if the programmer has taken the address of a
method before the dtable was initialized... too bad for him! */
if(receiver->class_pointer->dtable != __objc_uninstalled_dtable)
- goto allready_initialized;
+ goto already_initialized;
if(CLS_ISCLASS(receiver->class_pointer))
{
@@ -198,7 +198,7 @@ static void __objc_init_install_dtable(id receiver, SEL op)
CLS_SETINITIALIZED((Class)receiver);
}
-allready_initialized:
+already_initialized:
/* Get real method for this in newly installed dtable */
imp = get_imp(receiver->class_pointer, op);