comparison graal/GraalCompiler/src/com/sun/c1x/ir/ExceptionEdgeInstruction.java @ 2781:bda5972a40a5

remove unnecessary BlockBegin nodes in frontend
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 24 May 2011 15:31:52 +0200
parents 3ac3dd97d8df
children 9bc0c2eb00d6
comparison
equal deleted inserted replaced
2776:398b8fa5dc81 2781:bda5972a40a5
22 */ 22 */
23 package com.sun.c1x.ir; 23 package com.sun.c1x.ir;
24 24
25 25
26 public interface ExceptionEdgeInstruction { 26 public interface ExceptionEdgeInstruction {
27 BlockBegin exceptionEdge(); 27 StateSplit exceptionEdge();
28 } 28 }