summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/java/ChangeLog5
-rw-r--r--gcc/java/gcj.texi10
2 files changed, 10 insertions, 5 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index d8712467451..de29b7b926e 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -1,3 +1,8 @@
+2005-02-02 Tom Tromey <tromey@redhat.com>
+
+ * gcj.texi (libgcj Runtime Properties): Default library_control
+ to 'cache'.
+
2005-02-02 Ranjit Mathew <rmathew@hotmail.com>
PR java/15543
diff --git a/gcc/java/gcj.texi b/gcc/java/gcj.texi
index 958768a694c..0bf50bd5fcf 100644
--- a/gcc/java/gcj.texi
+++ b/gcc/java/gcj.texi
@@ -2469,11 +2469,11 @@ the runtime is unable to do it through @code{dladdr}.
@item gnu.gcj.runtime.VMClassLoader.library_control
This controls how shared libraries are automatically loaded by the
-built-in class loader. By default, or if this property is set to
-@samp{full}, a full search is done for each requested class. If this
-property is set to @samp{cache}, then any failed lookups are cached
-and not tried again. If this property is set to @samp{never}, then
-lookups are never done. For more information, @xref{Extensions}.
+built-in class loader. If this property is set to @samp{full}, a full
+search is done for each requested class. If this property is set to
+@samp{cache} (the default), then any failed lookups are cached and not
+tried again. If this property is set to @samp{never}, then lookups
+are never done. For more information, @xref{Extensions}.
@item gnu.gcj.jit.compiler
@c FIXME we should probably have a whole node on this...