# HG changeset patch # User Lukas Stadler # Date 1360773343 -3600 # Node ID f4aec4c242ff16beb9e2814a5cfaa097b6250918 # Parent b66708ba752bfdebb7a4c9ae8e5cf073d3383e02 fix for OSR_MIGRATION_END descriptor diff -r b66708ba752b -r f4aec4c242ff graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/phases/OnStackReplacementPhase.java --- 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 {