changeset 2785:847dcd4dbd4c

Cleanup
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 25 May 2011 12:20:08 +0200
parents e62cfea1c134
children 39a9d62e4c60 df4c5254c5cc
files graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java	Wed May 25 12:18:58 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java	Wed May 25 12:20:08 2011 +0200
@@ -1087,8 +1087,6 @@
     }
 
     private void fillSyncHandler(Value lock, Block syncHandler) {
-        FrameState origState = frameState.create(-1);
-
         lastInstr = syncHandler.firstInstruction;
         while (lastInstr.next() != null) {
             // go forward to the end of the block
@@ -1096,7 +1094,6 @@
         }
 
         frameState.initializeFrom(((StateSplit) syncHandler.firstInstruction).stateBefore());
-        int bci = Instruction.SYNCHRONIZATION_ENTRY_BCI;
 
         assert lock != null;
         assert frameState.locksSize() > 0 && frameState.lockAt(frameState.locksSize() - 1) == lock;