diff c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotMethodUnresolved.java @ 1474:f5908cceac7d

Filled up the new hasCompiledCode method of the RiMethod interface.
author ldayne <Laurent.Daynes@oracle.com>
date Fri, 03 Dec 2010 18:00:07 +0100
parents 243c729b5ded
children 7e09ea4a8f36
line wrap: on
line diff
--- a/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotMethodUnresolved.java	Tue Nov 30 15:13:57 2010 +0100
+++ b/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotMethodUnresolved.java	Fri Dec 03 18:00:07 2010 +0100
@@ -143,6 +143,10 @@
         return "HotSpotMethod<" + holder.name() + ". " + name + ", unresolved>";
     }
 
+    public boolean hasCompiledCode() {
+        return false;
+    }
+
     @Override
     public Class<?> accessor() {
         return null;