comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTypeUnresolved.java @ 2293:e3c42b8de67e

Removed a reference to getRiType(Class c) and some checkstyle fixes.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 11 Apr 2011 17:42:45 +0200
parents 6190d20bd6d6
children
comparison
equal deleted inserted replaced
2292:175e7b4d7322 2293:e3c42b8de67e
151 public RiType exactType() { 151 public RiType exactType() {
152 throw unresolved("exactType()"); 152 throw unresolved("exactType()");
153 } 153 }
154 154
155 @Override 155 @Override
156 public RiType superType() {
157 throw unresolved("superType()");
158 }
159
160 @Override
156 public RiType arrayOf() { 161 public RiType arrayOf() {
157 return new HotSpotTypeUnresolved(compiler, simpleName, dimensions + 1); 162 return new HotSpotTypeUnresolved(compiler, simpleName, dimensions + 1);
158 } 163 }
159 164
160 @Override 165 @Override