comparison graal/com.oracle.max.cri/src/com/sun/cri/ci/CiValue.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 28
29 /** 29 /**
30 * Abstract base class for values manipulated by the compiler. All values have a {@linkplain CiKind kind} and are immutable. 30 * Abstract base class for values manipulated by the compiler. All values have a {@linkplain CiKind kind} and are immutable.
31 */ 31 */
32 public abstract class CiValue implements Serializable { 32 public abstract class CiValue implements Serializable {
33 private static final long serialVersionUID = -6909397188697766469L;
33 34
35 @SuppressWarnings("serial")
34 public static CiValue IllegalValue = new CiValue(CiKind.Illegal) { 36 public static CiValue IllegalValue = new CiValue(CiKind.Illegal) {
35 @Override 37 @Override
36 public String name() { 38 public String name() {
37 return "<illegal>"; 39 return "<illegal>";
38 } 40 }