comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTypePrimitive.java @ 2048:177398c6147d

Added unique concrete subtype assumption.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Mon, 10 Jan 2011 10:50:22 +0100
parents 79d04223b8a5
children 3c0a889a176b
comparison
equal deleted inserted replaced
2047:eb575e79136f 2048:177398c6147d
158 @Override 158 @Override
159 public String toString() { 159 public String toString() {
160 return "HotSpotTypePrimitive<" + kind + ">"; 160 return "HotSpotTypePrimitive<" + kind + ">";
161 } 161 }
162 162
163 @Override
164 public RiType uniqueConcreteSubtype() {
165 return this;
166 }
167
163 } 168 }