comparison graal/GraalCompiler/src/com/sun/c1x/ir/Return.java @ 2762:ca31e84ff154

Javadoc clean up.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Sat, 21 May 2011 17:56:11 +0200
parents 0fe79e7435c3
children 93fd92c9f8b0
comparison
equal deleted inserted replaced
2761:d3398b21faf9 2762:ca31e84ff154
65 65
66 /** 66 /**
67 * Constructs a new Return instruction. 67 * Constructs a new Return instruction.
68 * @param result the instruction producing the result for this return; {@code null} if this 68 * @param result the instruction producing the result for this return; {@code null} if this
69 * is a void return 69 * is a void return
70 * @param isSafepoint {@code true} if this instruction is a safepoint instruction
71 * @param graph 70 * @param graph
72 */ 71 */
73 public Return(Value result, Graph graph) { 72 public Return(Value result, Graph graph) {
74 super(result == null ? CiKind.Void : result.kind, null, 0, INPUT_COUNT, SUCCESSOR_COUNT, graph); 73 super(result == null ? CiKind.Void : result.kind, null, 0, INPUT_COUNT, SUCCESSOR_COUNT, graph);
75 setResult(result); 74 setResult(result);