changeset 7867:f4aec4c242ff

fix for OSR_MIGRATION_END descriptor
author Lukas Stadler <lukas.stadler@jku.at>
date Wed, 13 Feb 2013 17:35:43 +0100
parents b66708ba752b
children 7a5bbcc36bb2
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/phases/OnStackReplacementPhase.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/phases/OnStackReplacementPhase.java	Wed Feb 13 15:53:03 2013 +0100
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/phases/OnStackReplacementPhase.java	Wed Feb 13 17:35:43 2013 +0100
@@ -43,7 +43,7 @@
 
 public class OnStackReplacementPhase extends Phase {
 
-    public static final Descriptor OSR_MIGRATION_END = new Descriptor("OSR_migration_end", true, null, void.class, long.class);
+    public static final Descriptor OSR_MIGRATION_END = new Descriptor("OSR_migration_end", true, void.class, long.class);
 
     public class OSREntryProxyNode extends FloatingNode implements LIRLowerable {