comparison 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
comparison
equal deleted inserted replaced
1473:cb04e4217df0 1474:f5908cceac7d
141 @Override 141 @Override
142 public String toString() { 142 public String toString() {
143 return "HotSpotMethod<" + holder.name() + ". " + name + ", unresolved>"; 143 return "HotSpotMethod<" + holder.name() + ". " + name + ", unresolved>";
144 } 144 }
145 145
146 public boolean hasCompiledCode() {
147 return false;
148 }
149
146 @Override 150 @Override
147 public Class<?> accessor() { 151 public Class<?> accessor() {
148 return null; 152 return null;
149 } 153 }
150 154