diff graal/GraalCompiler/src/com/sun/c1x/graph/IR.java @ 2516:a384fac3fd34

Removed anything OSR-related.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 15:49:27 +0200
parents 4fdef1464592
children 268b8eb84b6e
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed Apr 27 15:36:29 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed Apr 27 15:49:27 2011 +0200
@@ -98,7 +98,7 @@
     }
 
     private void buildGraph() {
-        topScope = new IRScope(null, null, compilation.method, compilation.osrBCI);
+        topScope = new IRScope(null, null, compilation.method, -1);
 
         // Graph builder must set the startBlock and the osrEntryBlock
         new GraphBuilder(compilation, this).build(topScope);