comparison graal/GraalCompiler/src/com/sun/c1x/ir/Invoke.java @ 2783:9bc0c2eb00d6

Made graph builder removal of BlockBegin work.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 25 May 2011 12:04:58 +0200
parents 80b024e75b29
children 9ba6a8abe894 bd17ac598c6e
comparison
equal deleted inserted replaced
2782:915456e4959e 2783:9bc0c2eb00d6
68 68
69 /** 69 /**
70 * The entry to the exception dispatch chain for this invoke. 70 * The entry to the exception dispatch chain for this invoke.
71 */ 71 */
72 @Override 72 @Override
73 public BlockBegin exceptionEdge() { 73 public Instruction exceptionEdge() {
74 return (BlockBegin) successors().get(super.successorCount() + SUCCESSOR_EXCEPTION_EDGE); 74 return (Instruction) successors().get(super.successorCount() + SUCCESSOR_EXCEPTION_EDGE);
75 } 75 }
76 76
77 public Instruction setExceptionEdge(Instruction n) { 77 public Instruction setExceptionEdge(Instruction n) {
78 return (Instruction) successors().set(super.successorCount() + SUCCESSOR_EXCEPTION_EDGE, n); 78 return (Instruction) successors().set(super.successorCount() + SUCCESSOR_EXCEPTION_EDGE, n);
79 } 79 }