diff graal/GraalCompiler/src/com/sun/c1x/ir/Base.java @ 2516:a384fac3fd34

Removed anything OSR-related.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 15:49:27 +0200
parents 16b9a8b5ad39
children 4a36a0bd6d18
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/Base.java	Wed Apr 27 15:36:29 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/Base.java	Wed Apr 27 15:49:27 2011 +0200
@@ -36,15 +36,10 @@
     /**
      * Constructs a new Base instruction.
      * @param standardEntry the standard entrypoint block
-     * @param osrEntry the OSR entrypoint block
      */
-    public Base(BlockBegin standardEntry, BlockBegin osrEntry) {
+    public Base(BlockBegin standardEntry) {
         super(CiKind.Illegal, null, false);
-        assert osrEntry == null || osrEntry.isOsrEntry();
         assert standardEntry.isStandardEntry();
-        if (osrEntry != null) {
-            successors.add(osrEntry);
-        }
         successors.add(standardEntry);
     }