changeset 14520:f84115370178

Javadoc fixes
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 11 Mar 2014 15:34:06 +0100
parents a0d1e2972a29
children 29ccc4cbabca
files graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/ResolvedJavaMethod.java graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/CompilerToVM.java
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/ResolvedJavaMethod.java	Tue Mar 11 11:00:44 2014 +0100
+++ b/graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/ResolvedJavaMethod.java	Tue Mar 11 15:34:06 2014 +0100
@@ -185,6 +185,9 @@
      */
     boolean canBeInlined();
 
+    /**
+     * Returns {@code true} if the inlining of this method should be forced.
+     */
     boolean shouldBeInlined();
 
     /**
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/CompilerToVM.java	Tue Mar 11 11:00:44 2014 +0100
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/CompilerToVM.java	Tue Mar 11 15:34:06 2014 +0100
@@ -59,7 +59,7 @@
      * Determines if a given metaspace Method can be inlined. A method may not be inlinable for a
      * number of reasons such as:
      * <ul>
-     * <li>a CompileOracle directive may prevent inlining or compilation of this methods</li>
+     * <li>a CompileOracle directive may prevent inlining or compilation of methods</li>
      * <li>the method may have a bytecode breakpoint set</li>
      * <li>the method may have other bytecode features that require special handling by the VM</li>
      * </ul>