diff graal/GraalCompiler/src/com/sun/c1x/asm/ExceptionInfo.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 7ed72769d51a
children
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/asm/ExceptionInfo.java	Thu May 19 14:31:03 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/asm/ExceptionInfo.java	Thu May 19 16:05:42 2011 +0200
@@ -22,19 +22,15 @@
  */
 package com.sun.c1x.asm;
 
-import com.sun.c1x.ir.*;
+import com.sun.c1x.lir.*;
 
-/**
- *
- * @author Thomas Wuerthinger
- */
 public class ExceptionInfo {
 
     public final int codeOffset;
-    public final BlockBegin exceptionEdge;
+    public final LIRBlock exceptionEdge;
     public final int bci;
 
-    public ExceptionInfo(int pcOffset, BlockBegin exceptionEdge, int bci) {
+    public ExceptionInfo(int pcOffset, LIRBlock exceptionEdge, int bci) {
         this.codeOffset = pcOffset;
         this.exceptionEdge = exceptionEdge;
         this.bci = bci;