changeset 8580:4bd7971c0630

Add code for interpreter to executeHelper
author Matthias Grimmer <grimmer@ssw.jku.at>
date Fri, 29 Mar 2013 17:41:47 +0100
parents 847cd24fc4cf
children dd3c52b31c3d
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotInstalledCode.java
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotInstalledCode.java	Fri Mar 29 10:04:13 2013 +0100
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotInstalledCode.java	Fri Mar 29 17:41:47 2013 +0100
@@ -110,7 +110,6 @@
     }
 
     public static Object executeHelper(long nmethod, long metaspaceMethod, Object arg1, Object arg2, Object arg3) {
-// throw new IllegalStateException();
         return HotSpotGraalRuntime.getInstance().getCompilerToVM().executeCompiledMethod(metaspaceMethod, nmethod, arg1, arg2, arg3);
     }
 }