Commit 375277f6 by Kazu Hirata Committed by Kazu Hirata

class.c, [...]: Fix comment typos.

	* class.c, except.c, expr.c, java-gimplify.c: Fix comment
	typos.

From-SVN: r114172
parent ce2e12c2
2006-05-28 Kazu Hirata <kazu@codesourcery.com>
* class.c, except.c, expr.c, java-gimplify.c: Fix comment
typos.
2006-05-26 Tom Tromey <tromey@redhat.com> 2006-05-26 Tom Tromey <tromey@redhat.com>
* expr.c (java_push_constant_from_pool): Handle 'ldc class'. * expr.c (java_push_constant_from_pool): Handle 'ldc class'.
......
...@@ -2606,7 +2606,7 @@ emit_register_classes (tree *list_p) ...@@ -2606,7 +2606,7 @@ emit_register_classes (tree *list_p)
/* TARGET_USE_JCR_SECTION defaults to 1 if SUPPORTS_WEAK and /* TARGET_USE_JCR_SECTION defaults to 1 if SUPPORTS_WEAK and
TARGET_ASM_NAMED_SECTION, else 0. Some targets meet those conditions TARGET_ASM_NAMED_SECTION, else 0. Some targets meet those conditions
but lack suitable crtbegin/end objects or linker support. These but lack suitable crtbegin/end objects or linker support. These
targets can overide the default in tm.h to use the fallback mechanism. */ targets can override the default in tm.h to use the fallback mechanism. */
if (TARGET_USE_JCR_SECTION) if (TARGET_USE_JCR_SECTION)
{ {
tree klass, t; tree klass, t;
......
...@@ -474,7 +474,7 @@ build_exception_object_ref (tree type) ...@@ -474,7 +474,7 @@ build_exception_object_ref (tree type)
return obj; return obj;
} }
/* If there are any handlers for this range, isssue end of range, /* If there are any handlers for this range, issue end of range,
and then all handler blocks */ and then all handler blocks */
void void
expand_end_java_handler (struct eh_range *range) expand_end_java_handler (struct eh_range *range)
......
...@@ -2023,7 +2023,7 @@ build_class_init (tree clas, tree expr) ...@@ -2023,7 +2023,7 @@ build_class_init (tree clas, tree expr)
/* Rewrite expensive calls that require stack unwinding at runtime to /* Rewrite expensive calls that require stack unwinding at runtime to
cheaper alternatives. The logic here performs thse cheaper alternatives. The logic here performs these
transformations: transformations:
java.lang.Class.forName("foo") -> java.lang.Class.forName("foo", class$) java.lang.Class.forName("foo") -> java.lang.Class.forName("foo", class$)
......
...@@ -276,7 +276,7 @@ java_gimplify_block (tree java_block) ...@@ -276,7 +276,7 @@ java_gimplify_block (tree java_block)
block = make_node (BLOCK); block = make_node (BLOCK);
BLOCK_VARS (block) = decls; BLOCK_VARS (block) = decls;
/* The TREE_USED flag on a block determines whether the debug ouput /* The TREE_USED flag on a block determines whether the debug output
routines generate info for the variables in that block. */ routines generate info for the variables in that block. */
TREE_USED (block) = 1; TREE_USED (block) = 1;
......
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