comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotField.java @ 2055:99ad52189524

Refactorings to get towards less CRI overhead.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Thu, 13 Jan 2011 17:45:17 +0100
parents 3c0a889a176b
children 89bf01e6b049
comparison
equal deleted inserted replaced
2054:3c0a889a176b 2055:99ad52189524
99 return offset; 99 return offset;
100 } 100 }
101 101
102 @Override 102 @Override
103 public String toString() { 103 public String toString() {
104 return "HotSpotField<" + ((HotSpotType) holder).simpleName() + "." + name + ">"; 104 return "HotSpotField<" + holder.name() + "." + name + ">";
105 } 105 }
106 106
107 } 107 }