diff graal/GraalCompiler/src/com/sun/c1x/lir/LIRDebugInfo.java @ 2718:c1ce2a53d6c3

Attempt to remove dependency between backend and BlockBegin.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 16:05:42 +0200
parents a0dd2b907806
children 1cd59ca9ac86
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/lir/LIRDebugInfo.java	Thu May 19 14:31:03 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/lir/LIRDebugInfo.java	Thu May 19 16:05:42 2011 +0200
@@ -37,10 +37,10 @@
     }
 
     public final FrameState state;
-    public final BlockBegin exceptionEdge;
+    public final LIRBlock exceptionEdge;
     public CiDebugInfo debugInfo;
 
-    public LIRDebugInfo(FrameState state, BlockBegin exceptionEdge) {
+    public LIRDebugInfo(FrameState state, LIRBlock exceptionEdge) {
         assert state != null;
         this.state = state;
         this.exceptionEdge = exceptionEdge;