comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTypeResolved.java @ 1479:71cd4b9610eb

Two fixes for DaCapo / SpecJVM2008 runs.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Sat, 27 Nov 2010 14:30:07 +0100
parents 2c754f3a2722
children 79d04223b8a5
comparison
equal deleted inserted replaced
1478:5571b97fc1ec 1479:71cd4b9610eb
64 return Compiler.getVMEntries().RiType_componentType(vmId); 64 return Compiler.getVMEntries().RiType_componentType(vmId);
65 } 65 }
66 66
67 @Override 67 @Override
68 public RiType exactType() { 68 public RiType exactType() {
69 // TODO is this correct? what's this exactType good for?
70 if (Modifier.isFinal(accessFlags)) { 69 if (Modifier.isFinal(accessFlags)) {
71 return this; 70 return this;
72 } 71 }
73 return null; 72 return null;
74 } 73 }