diff graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java @ 2771:056e392d63d4

Connected local variables to start node. No more need for frame state to emit locals.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Tue, 24 May 2011 09:49:04 +0200
parents dd6419f4bfe2
children 27512ea6bbcb
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java	Mon May 23 21:22:06 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java	Tue May 24 09:49:04 2011 +0200
@@ -962,7 +962,7 @@
         if (exactType == null && declaredType != null) {
             exactType = declaredType.exactType();
         }
-        if (exactType == null && receiver instanceof Local && ((Local) receiver).javaIndex() == 0) {
+        if (exactType == null && receiver instanceof Local && ((Local) receiver).index() == 0) {
             // the exact type isn't known, but the receiver is parameter 0 => use holder
             receiverType = compilation.method.holder();
             exactType = receiverType.exactType();