comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotMethodResolved.java @ 1435:20a3896518ac

Initial adjustments to make C1X4HotSpot compile and run with latest Maxine version.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Fri, 22 Oct 2010 17:31:38 +0200
parents efba53f86c4f
children 9e5e83ca2259
comparison
equal deleted inserted replaced
1434:72cfb36c6bb2 1435:20a3896518ac
163 @Override 163 @Override
164 public String toString() { 164 public String toString() {
165 return "HotSpotMethod<" + name + ">"; 165 return "HotSpotMethod<" + name + ">";
166 } 166 }
167 167
168 @Override
169 public Class<?> accessor() {
170 // TODO Auto-generated method stub
171 return null;
172 }
173
174 @Override
175 public int intrinsic() {
176 // TODO Auto-generated method stub
177 return 0;
178 }
179
168 } 180 }