comparison graal/GraalCompiler/src/com/sun/c1x/ir/Return.java @ 2712:a0dd2b907806

Removed implicit safepoints.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 13:09:37 +0200
parents 0c6564c254af
children 0fe79e7435c3
comparison
equal deleted inserted replaced
2708:4272b7af2d17 2712:a0dd2b907806
62 * @param result the instruction producing the result for this return; {@code null} if this 62 * @param result the instruction producing the result for this return; {@code null} if this
63 * is a void return 63 * is a void return
64 * @param isSafepoint {@code true} if this instruction is a safepoint instruction 64 * @param isSafepoint {@code true} if this instruction is a safepoint instruction
65 * @param graph 65 * @param graph
66 */ 66 */
67 public Return(Value result, boolean isSafepoint, Graph graph) { 67 public Return(Value result, Graph graph) {
68 super(result == null ? CiKind.Void : result.kind, null, isSafepoint, 0, INPUT_COUNT, SUCCESSOR_COUNT, graph); 68 super(result == null ? CiKind.Void : result.kind, null, 0, INPUT_COUNT, SUCCESSOR_COUNT, graph);
69 setResult(result); 69 setResult(result);
70 } 70 }
71 71
72 @Override 72 @Override
73 public void accept(ValueVisitor v) { 73 public void accept(ValueVisitor v) {