summaryrefslogtreecommitdiff
path: root/gcc/objc
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-10-02 15:56:06 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-10-02 15:56:06 +0000
commit9f9a4117a1a5ffa50958f3aa7b0c25e606b0fde1 (patch)
treea84514ee5b33f306100744879f4fd29cb116676b /gcc/objc
parent8cc85d2205c096cc995f06a9583896e02e2f6dd8 (diff)
downloadgcc-9f9a4117a1a5ffa50958f3aa7b0c25e606b0fde1.tar.gz
* objc-act.c: Fix comment typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88426 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/objc')
-rw-r--r--gcc/objc/ChangeLog4
-rw-r--r--gcc/objc/objc-act.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/objc/ChangeLog b/gcc/objc/ChangeLog
index 082a38cbf12..734f74d6bf9 100644
--- a/gcc/objc/ChangeLog
+++ b/gcc/objc/ChangeLog
@@ -1,3 +1,7 @@
+2004-10-02 Kazu Hirata <kazu@cs.umass.edu>
+
+ * objc-act.c: Fix comment typos.
+
2004-09-24 Ziemowit Laski <zlaski@apple.com>
* objc-act.c (init_objc_symtab, init_module_descriptor,
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c
index e09e7a3e8cd..e530f2c1dff 100644
--- a/gcc/objc/objc-act.c
+++ b/gcc/objc/objc-act.c
@@ -1287,7 +1287,7 @@ finish_var_decl (tree var, tree initializer)
TREE_USED (var) = 1;
}
-/* Find the decl for the constant string class refernce. This is only
+/* Find the decl for the constant string class reference. This is only
used for the NeXT runtime. */
static tree
@@ -3091,7 +3091,7 @@ next_sjlj_build_try_catch_finally (void)
TREE_THIS_VOLATILE (rethrow_decl) = 1;
TREE_CHAIN (rethrow_decl) = stack_decl;
- /* Build the outermost varible binding level. */
+ /* Build the outermost variable binding level. */
bind = build (BIND_EXPR, void_type_node, rethrow_decl, NULL, NULL);
SET_EXPR_LOCATION (bind, cur_try_context->try_locus);
TREE_SIDE_EFFECTS (bind) = 1;
@@ -3863,7 +3863,7 @@ generate_protocol_references (tree plist)
objects). Because, as explained above, the compiler generates as
few Protocol objects as possible, some Protocol object might end up
being referenced multiple times when compiled with the GNU runtime,
- and end up being fixed up multiple times at runtime inizialization.
+ and end up being fixed up multiple times at runtime initialization.
But that doesn't hurt, it's just a little inefficient. */
static void
@@ -7348,7 +7348,7 @@ objc_push_parm (tree parm)
objc_parmlist = chainon (objc_parmlist, parm);
}
-/* Retrieve the formal paramter list constructed via preceding calls to
+/* Retrieve the formal parameter list constructed via preceding calls to
objc_push_parm(). */
#ifdef OBJCPLUS