comparison graal/com.oracle.max.cri/src/com/sun/cri/ci/CiCodePos.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
comparison
equal deleted inserted replaced
4141:04d21be7a24f 4142:bc8527f3071c
31 * locations, that is communicated from the compiler to the runtime system. A code position 31 * locations, that is communicated from the compiler to the runtime system. A code position
32 * can be used by the runtime system to reconstruct a source-level stack trace 32 * can be used by the runtime system to reconstruct a source-level stack trace
33 * for exceptions and to create {@linkplain CiFrame frames} for deoptimization. 33 * for exceptions and to create {@linkplain CiFrame frames} for deoptimization.
34 */ 34 */
35 public class CiCodePos implements Serializable { 35 public class CiCodePos implements Serializable {
36 /**
37 *
38 */
39 private static final long serialVersionUID = 8633885274526033515L;
40
36 /** 41 /**
37 * The position where this position has been called, {@code null} if none. 42 * The position where this position has been called, {@code null} if none.
38 */ 43 */
39 public final CiCodePos caller; 44 public final CiCodePos caller;
40 45