comparison graal/com.oracle.max.cri/src/com/sun/cri/ci/CiRegisterValue.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
27 * CiRegisterValue} for each ({@link CiRegister}, {@link CiKind}) pair. Use {@link CiRegister#asValue(CiKind)} to 27 * CiRegisterValue} for each ({@link CiRegister}, {@link CiKind}) pair. Use {@link CiRegister#asValue(CiKind)} to
28 * retrieve the canonical {@link CiRegisterValue} instance for a given (register,kind) pair. 28 * retrieve the canonical {@link CiRegisterValue} instance for a given (register,kind) pair.
29 */ 29 */
30 public final class CiRegisterValue extends CiValue { 30 public final class CiRegisterValue extends CiValue {
31 31
32 /**
33 *
34 */
35 private static final long serialVersionUID = 7999341472196897163L;
32 /** 36 /**
33 * The register. 37 * The register.
34 */ 38 */
35 public final CiRegister reg; 39 public final CiRegister reg;
36 40