gcj.texi: Fix a typo.

* gcj.texi: Fix a typo.
	* lang.c: Fix a comment typo.

From-SVN: r97551
This commit is contained in:
Kazu Hirata 2005-04-04 15:29:52 +00:00 committed by Kazu Hirata
parent 5e77eb534b
commit df04438806
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-04-04 Kazu Hirata <kazu@cs.umass.edu>
* gcj.texi: Fix a typo.
* lang.c: Fix a comment typo.
2005-04-01 Thomas Fitzsimmons <fitzsim@redhat.com>
* gcj.texi (Invoking gij): Add descriptions of new -X options.

View File

@ -1653,7 +1653,7 @@ java::util::Hashtable *ht = new java::util::Hashtable(120);
@node Memory allocation
@section Memory allocation
When allocting memory in @acronym{CNI} methods it is best to handle
When allocating memory in @acronym{CNI} methods it is best to handle
out-of-memory conditions by throwing a Java exception. These
functions are provided for that purpose:

View File

@ -801,7 +801,7 @@ merge_init_test_initialization (void **entry, void *x)
does this by setting the DECL_INITIAL of the init_test_decl for that
class, and no initializations are emitted for that class.
However, what if the method that is suppoed to do the initialization
However, what if the method that is supposed to do the initialization
is itself inlined in the caller? When expanding the called method
we'll assume that the class initialization has already been done,
because the DECL_INITIAL of the init_test_decl is set.