Commit cd64dc98 by Kazu Hirata Committed by Kazu Hirata

check-init.c, [...]: Fix comment typos.

	* check-init.c, decl.c, expr.c, gcj.texi, java-tree.h,
	jcf-parse.c, jcf.h, parse.h, parse.y, typeck.c: Fix comment
	typos.  Follow spelling conventions.

From-SVN: r103927
parent 1634705d
2005-09-06 Kazu Hirata <kazu@codesourcery.com>
* check-init.c, decl.c, expr.c, gcj.texi, java-tree.h,
jcf-parse.c, jcf.h, parse.h, parse.y, typeck.c: Fix comment
typos. Follow spelling conventions.
2005-09-05 Ranjit Mathew <rmathew@hotmail.com> 2005-09-05 Ranjit Mathew <rmathew@hotmail.com>
PR java/23431 PR java/23431
......
...@@ -37,7 +37,7 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ ...@@ -37,7 +37,7 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */
/* The basic idea is that we assign each local variable declaration /* The basic idea is that we assign each local variable declaration
and each blank final field an index, and then we pass around and each blank final field an index, and then we pass around
bitstrings, where the (2*i)'th bit is set if decl whose DECL_BIT_INDEX bitstrings, where the (2*i)'th bit is set if decl whose DECL_BIT_INDEX
is i is definitely assigned, and the the (2*i=1)'th bit is set if is i is definitely assigned, and the (2*i=1)'th bit is set if
decl whose DECL_BIT_INDEX is i is definitely unassigned */ decl whose DECL_BIT_INDEX is i is definitely unassigned */
/* One segment of a bitstring. */ /* One segment of a bitstring. */
......
...@@ -1231,7 +1231,7 @@ lookup_name (tree name) ...@@ -1231,7 +1231,7 @@ lookup_name (tree name)
} }
/* Similar to `lookup_name' but look only at current binding level and /* Similar to `lookup_name' but look only at current binding level and
the previous one if its the parameter level. */ the previous one if it's the parameter level. */
static tree static tree
lookup_name_current_level (tree name) lookup_name_current_level (tree name)
...@@ -2165,7 +2165,7 @@ java_mark_decl_local (tree decl) ...@@ -2165,7 +2165,7 @@ java_mark_decl_local (tree decl)
static void static void
java_mark_cni_decl_local (tree decl) java_mark_cni_decl_local (tree decl)
{ {
/* Setting DECL_LOCAL_CNI_METHOD_P changes the behaviour of the mangler. /* Setting DECL_LOCAL_CNI_METHOD_P changes the behavior of the mangler.
We expect that we should not yet have referenced this decl in a We expect that we should not yet have referenced this decl in a
context that requires it. Check this invariant even if we don't have context that requires it. Check this invariant even if we don't have
support for hidden aliases. */ support for hidden aliases. */
...@@ -2179,7 +2179,7 @@ java_mark_cni_decl_local (tree decl) ...@@ -2179,7 +2179,7 @@ java_mark_cni_decl_local (tree decl)
DECL_LOCAL_CNI_METHOD_P (decl) = 1; DECL_LOCAL_CNI_METHOD_P (decl) = 1;
} }
/* Use the preceeding two functions and mark all members of the class. */ /* Use the preceding two functions and mark all members of the class. */
void void
java_mark_class_local (tree class) java_mark_class_local (tree class)
......
...@@ -2999,8 +2999,8 @@ process_jvm_instruction (int PC, const unsigned char* byte_ops, ...@@ -2999,8 +2999,8 @@ process_jvm_instruction (int PC, const unsigned char* byte_ops,
const char *opname; /* Temporary ??? */ const char *opname; /* Temporary ??? */
int oldpc = PC; /* PC at instruction start. */ int oldpc = PC; /* PC at instruction start. */
/* If the instruction is at the beginning of a exception handler, /* If the instruction is at the beginning of an exception handler,
replace the top of the stack with the thrown object reference */ replace the top of the stack with the thrown object reference. */
if (instruction_bits [PC] & BCODE_EXCEPTION_TARGET) if (instruction_bits [PC] & BCODE_EXCEPTION_TARGET)
{ {
/* Note that the verifier will not emit a type map at all for /* Note that the verifier will not emit a type map at all for
...@@ -3321,7 +3321,7 @@ peek_opcode_at_pc (JCF *jcf, int code_offset, int pc) ...@@ -3321,7 +3321,7 @@ peek_opcode_at_pc (JCF *jcf, int code_offset, int pc)
This function is used by `give_name_to_locals' so that a local's This function is used by `give_name_to_locals' so that a local's
DECL features a DECL_LOCAL_START_PC such that the first related DECL features a DECL_LOCAL_START_PC such that the first related
store operation will use DECL as a destination, not a unrelated store operation will use DECL as a destination, not an unrelated
temporary created for the occasion. temporary created for the occasion.
This function uses a global (instruction_bits) `note_instructions' should This function uses a global (instruction_bits) `note_instructions' should
......
...@@ -2649,7 +2649,7 @@ Enables printing serialization debugging by the @code{java.io.ObjectInput} and ...@@ -2649,7 +2649,7 @@ Enables printing serialization debugging by the @code{java.io.ObjectInput} and
string. Only used when running a debug build of the library. string. Only used when running a debug build of the library.
@item gnu.classpath.vm.shortname @item gnu.classpath.vm.shortname
This is a succint name of the virtual machine. For @code{libgcj}, This is a succinct name of the virtual machine. For @code{libgcj},
this will always be @samp{libgcj}. this will always be @samp{libgcj}.
@item gnu.classpath.home.url @item gnu.classpath.home.url
......
...@@ -1660,12 +1660,12 @@ extern tree *type_map; ...@@ -1660,12 +1660,12 @@ extern tree *type_map;
#define INNER_CLASS_DECL_P(NODE) (TYPE_NAME (TREE_TYPE (NODE)) == NODE \ #define INNER_CLASS_DECL_P(NODE) (TYPE_NAME (TREE_TYPE (NODE)) == NODE \
&& DECL_CONTEXT (NODE)) && DECL_CONTEXT (NODE))
/* True if NODE is an top level class TYPE_DECL node: NODE isn't /* True if NODE is a top level class TYPE_DECL node: NODE isn't
an inner class or NODE is a static class. */ an inner class or NODE is a static class. */
#define TOPLEVEL_CLASS_DECL_P(NODE) (!INNER_CLASS_DECL_P (NODE) \ #define TOPLEVEL_CLASS_DECL_P(NODE) (!INNER_CLASS_DECL_P (NODE) \
|| CLASS_STATIC (NODE)) || CLASS_STATIC (NODE))
/* True if the class decl NODE was declared in a inner scope and is /* True if the class decl NODE was declared in an inner scope and is
not a toplevel class */ not a toplevel class */
#define PURE_INNER_CLASS_DECL_P(NODE) \ #define PURE_INNER_CLASS_DECL_P(NODE) \
(INNER_CLASS_DECL_P (NODE) && !CLASS_STATIC (NODE)) (INNER_CLASS_DECL_P (NODE) && !CLASS_STATIC (NODE))
...@@ -1678,7 +1678,7 @@ extern tree *type_map; ...@@ -1678,7 +1678,7 @@ extern tree *type_map;
#define TOPLEVEL_CLASS_TYPE_P(NODE) (!INNER_CLASS_TYPE_P (NODE) \ #define TOPLEVEL_CLASS_TYPE_P(NODE) (!INNER_CLASS_TYPE_P (NODE) \
|| CLASS_STATIC (TYPE_NAME (NODE))) || CLASS_STATIC (TYPE_NAME (NODE)))
/* True if the class type NODE was declared in a inner scope and is /* True if the class type NODE was declared in an inner scope and is
not a toplevel class */ not a toplevel class */
#define PURE_INNER_CLASS_TYPE_P(NODE) \ #define PURE_INNER_CLASS_TYPE_P(NODE) \
(INNER_CLASS_TYPE_P (NODE) && !CLASS_STATIC (TYPE_NAME (NODE))) (INNER_CLASS_TYPE_P (NODE) && !CLASS_STATIC (TYPE_NAME (NODE)))
......
...@@ -683,7 +683,7 @@ load_class (tree class_or_name, int verbose) ...@@ -683,7 +683,7 @@ load_class (tree class_or_name, int verbose)
break; break;
/* We failed loading name. Now consider that we might be looking /* We failed loading name. Now consider that we might be looking
for a inner class. */ for an inner class. */
if ((separator = strrchr (IDENTIFIER_POINTER (name), '$')) if ((separator = strrchr (IDENTIFIER_POINTER (name), '$'))
|| (separator = strrchr (IDENTIFIER_POINTER (name), '.'))) || (separator = strrchr (IDENTIFIER_POINTER (name), '.')))
{ {
......
...@@ -62,8 +62,8 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ ...@@ -62,8 +62,8 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */
open() call. open() call.
If you want to add another host, add your define to the list below If you want to add another host, add your define to the list below
(i.e. defined(WIN32) || defined(YOUR_HOST)) and add an host-specific (i.e. defined(WIN32) || defined(YOUR_HOST)) and add a host-specific
.c file to Make-lang.in similar to win32-host.c */ .c file to Make-lang.in similar to win32-host.c. */
#if defined(WIN32) #if defined(WIN32)
extern int extern int
jcf_open_exact_case (const char* filename, int oflag); jcf_open_exact_case (const char* filename, int oflag);
......
...@@ -157,7 +157,7 @@ extern void parse_error_context (tree cl, const char *gmsgid, ...) ATTRIBUTE_GCC ...@@ -157,7 +157,7 @@ extern void parse_error_context (tree cl, const char *gmsgid, ...) ATTRIBUTE_GCC
IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (TYPE)))) IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (TYPE))))
/* Pedantic warning on obsolete modifiers. Note: when cl is NULL, /* Pedantic warning on obsolete modifiers. Note: when cl is NULL,
flags was set artificially, such as for a interface method */ flags was set artificially, such as for an interface method. */
#define OBSOLETE_MODIFIER_WARNING(cl, flags, __modifier, arg) \ #define OBSOLETE_MODIFIER_WARNING(cl, flags, __modifier, arg) \
{ \ { \
if (flag_redundant && (cl) && ((flags) & (__modifier))) \ if (flag_redundant && (cl) && ((flags) & (__modifier))) \
......
...@@ -6074,8 +6074,8 @@ resolve_and_layout (tree something, tree cl) ...@@ -6074,8 +6074,8 @@ resolve_and_layout (tree something, tree cl)
if (TREE_CODE (something) == EXPR_WITH_FILE_LOCATION) if (TREE_CODE (something) == EXPR_WITH_FILE_LOCATION)
something = EXPR_WFL_NODE (something); something = EXPR_WFL_NODE (something);
/* Otherwise, if something is not and IDENTIFIER_NODE, it can be a a /* Otherwise, if something is not and IDENTIFIER_NODE, it can be a
TYPE_DECL or a real TYPE */ TYPE_DECL or a real TYPE. */
else if (TREE_CODE (something) != IDENTIFIER_NODE) else if (TREE_CODE (something) != IDENTIFIER_NODE)
something = (TREE_CODE (TYPE_NAME (something)) == TYPE_DECL ? something = (TREE_CODE (TYPE_NAME (something)) == TYPE_DECL ?
DECL_NAME (TYPE_NAME (something)) : TYPE_NAME (something)); DECL_NAME (TYPE_NAME (something)) : TYPE_NAME (something));
......
...@@ -329,7 +329,7 @@ java_array_type_length (tree array_type) ...@@ -329,7 +329,7 @@ java_array_type_length (tree array_type)
return -1; return -1;
} }
/* An array of unknown length will be ultimately given an length of /* An array of unknown length will be ultimately given a length of
-2, so that we can still have `length' producing a negative value -2, so that we can still have `length' producing a negative value
even if found. This was part of an optimization aiming at removing even if found. This was part of an optimization aiming at removing
`length' from static arrays. We could restore it, FIXME. */ `length' from static arrays. We could restore it, FIXME. */
......
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