comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotMethodUnresolved.java @ 2276:f58974bce9bd

Up-to-date with CRI changes.
author Doug Simon <doug.simon@oracle.com>
date Tue, 08 Mar 2011 10:26:25 +0100
parents e5ba25730d9b
children 569d3fe7d65c
comparison
equal deleted inserted replaced
2274:360497545e85 2276:f58974bce9bd
130 @Override 130 @Override
131 public RiExceptionHandler[] exceptionHandlers() { 131 public RiExceptionHandler[] exceptionHandlers() {
132 throw unresolved("exceptionHandlers"); 132 throw unresolved("exceptionHandlers");
133 } 133 }
134 134
135 @Override
136 public boolean minimalDebugInfo() {
137 throw unresolved("minimalDebugInfo");
138 }
139
135 private CiUnresolvedException unresolved(String operation) { 140 private CiUnresolvedException unresolved(String operation) {
136 return new CiUnresolvedException(operation + " not defined for unresolved method " + name); 141 return new CiUnresolvedException(operation + " not defined for unresolved method " + name);
137 } 142 }
138 143
139 @Override 144 @Override