comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotMethodUnresolved.java @ 1448:9196a2b32950

Modified C++ to reflect changes in calling convention CRI code.
author Doug Simon <doug.simon@oracle.com>
date Tue, 09 Nov 2010 17:40:15 +0100
parents d0c8d3a2a7e8
children c0155c60b089 2c754f3a2722
comparison
equal deleted inserted replaced
1447:1afbc44ee576 1448:9196a2b32950
118 public Object liveness(int bci) { 118 public Object liveness(int bci) {
119 throw unresolved("liveness"); 119 throw unresolved("liveness");
120 } 120 }
121 121
122 @Override 122 @Override
123 public StackTraceElement toStackTraceElement(int bci) {
124 return CiUtil.toStackTraceElement(this, bci);
125 }
126
127 @Override
123 public boolean canBeStaticallyBound() { 128 public boolean canBeStaticallyBound() {
124 throw unresolved("canBeStaticallyBound"); 129 throw unresolved("canBeStaticallyBound");
125 } 130 }
126 131
127 @Override 132 @Override