### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core Index: compiler/org/eclipse/jdt/internal/compiler/codegen/StackMapFrame.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/StackMapFrame.java,v retrieving revision 1.2 diff -u -r1.2 StackMapFrame.java --- compiler/org/eclipse/jdt/internal/compiler/codegen/StackMapFrame.java 28 Mar 2006 20:31:16 -0000 1.2 +++ compiler/org/eclipse/jdt/internal/compiler/codegen/StackMapFrame.java 24 May 2006 18:22:23 -0000 @@ -208,7 +208,10 @@ return result; } } else { - result++; + // locals at the same location are not equals - this has to be a full frame + result = Integer.MAX_VALUE; + this.numberOfDifferentLocals = result; + return result; } indexInPrevLocals++; continue currentLocalsLoop;