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

Javadoc clean up.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Sat, 21 May 2011 17:56:11 +0200
parents 3ac3dd97d8df
children 93fd92c9f8b0
comparison
equal deleted inserted replaced
2761:d3398b21faf9 2762:ca31e84ff154
86 86
87 /** 87 /**
88 * Creates a new Throw instruction. 88 * Creates a new Throw instruction.
89 * @param exception the instruction that generates the exception to throw 89 * @param exception the instruction that generates the exception to throw
90 * @param stateAfter the state before the exception is thrown but after the exception object has been popped 90 * @param stateAfter the state before the exception is thrown but after the exception object has been popped
91 * @param isSafepoint {@code true} if this instruction is a safepoint instruction
92 * @param graph 91 * @param graph
93 */ 92 */
94 public Throw(Value exception, Graph graph) { 93 public Throw(Value exception, Graph graph) {
95 super(CiKind.Illegal, null, 0, INPUT_COUNT, SUCCESSOR_COUNT, graph); 94 super(CiKind.Illegal, null, 0, INPUT_COUNT, SUCCESSOR_COUNT, graph);
96 setException(exception); 95 setException(exception);