comparison graal/GraalRuntime/src/com/oracle/graal/runtime/HotSpotTypeResolvedImpl.java @ 2680:48496ba030c5

Sync with latest maxine repo (uniqueConcreteMethod & project names)
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Mon, 16 May 2011 11:34:59 +0200
parents f6125fb5bfbc
children f213a4924fbb
comparison
equal deleted inserted replaced
2677:0ea5f12e873a 2680:48496ba030c5
220 } 220 }
221 221
222 return result; 222 return result;
223 } 223 }
224 224
225 @Override
226 public RiMethod uniqueConcreteMethod(RiMethod method) {
227 assert method instanceof HotSpotMethodResolved;
228 return ((HotSpotMethodResolved) method).uniqueConcreteMethod();
229 }
230
225 } 231 }