comparison graal/com.oracle.max.cri/src/com/sun/cri/ci/CiVirtualObject.java @ 4142:bc8527f3071c

Adjust code base to new level of warnings.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 05:24:06 +0100
parents e233f5660da4
children f5328dda9714
comparison
equal deleted inserted replaced
4141:04d21be7a24f 4142:bc8527f3071c
28 * An instance of this class represents an object whose allocation was removed by escape analysis. The information stored in the {@link CiVirtualObject} is used during 28 * An instance of this class represents an object whose allocation was removed by escape analysis. The information stored in the {@link CiVirtualObject} is used during
29 * deoptimization to recreate the object. 29 * deoptimization to recreate the object.
30 */ 30 */
31 public final class CiVirtualObject extends CiValue { 31 public final class CiVirtualObject extends CiValue {
32 32
33 /**
34 *
35 */
36 private static final long serialVersionUID = -2907197776426346021L;
33 private final RiType type; 37 private final RiType type;
34 private CiValue[] values; 38 private CiValue[] values;
35 private final int id; 39 private final int id;
36 40
37 /** 41 /**