diff graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/ri/HotSpotKlassOop.java @ 5526:87e4aed94b26

Remove HotSpotCompiler interface, let HotSpotCompilerImpl implement GraalRuntime (in preparation of renaming).
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 08 Jun 2012 18:31:33 +0200
parents 5d19620a331d
children 9da759562a42
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/ri/HotSpotKlassOop.java	Fri Jun 08 17:55:28 2012 +0200
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/ri/HotSpotKlassOop.java	Fri Jun 08 18:31:33 2012 +0200
@@ -23,7 +23,6 @@
 package com.oracle.graal.hotspot.ri;
 
 import com.oracle.graal.hotspot.*;
-import com.oracle.graal.hotspot.HotSpotCompiler;
 
 /**
  * A mechanism for safely conveying a HotSpot klassOop value from the compiler to the C++ code.
@@ -40,7 +39,7 @@
      */
     public final Class javaMirror;
 
-    public HotSpotKlassOop(HotSpotCompiler compiler, Class javaMirror) {
+    public HotSpotKlassOop(HotSpotCompilerImpl compiler, Class javaMirror) {
         super(compiler);
         this.javaMirror = javaMirror;
     }