Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipe Mulet2001-08-06 14:54:50 +0000
committerPhilipe Mulet2001-08-06 14:54:50 +0000
commita966ab35031fa2a990a0d7a15092ccc9d20bd7c8 (patch)
tree39e7fc1559827be5bf1079b4de53704c7464c5b8
parent7c0d6dc61f1a3a5fa2460d48c92c28c9976c6e77 (diff)
downloadeclipse.jdt.core-a966ab35031fa2a990a0d7a15092ccc9d20bd7c8.tar.gz
eclipse.jdt.core-a966ab35031fa2a990a0d7a15092ccc9d20bd7c8.tar.xz
eclipse.jdt.core-a966ab35031fa2a990a0d7a15092ccc9d20bd7c8.zip
*** empty log message ***v_0_128_07_(2_0_stream)
-rw-r--r--org.eclipse.jdt.core/changes.txt1
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/CodeStream.java3
2 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/changes.txt b/org.eclipse.jdt.core/changes.txt
index 304f510eb9..f418a04934 100644
--- a/org.eclipse.jdt.core/changes.txt
+++ b/org.eclipse.jdt.core/changes.txt
@@ -12,6 +12,7 @@ What's new in this drop (since 0.9)
PRs Fixed in this Release (since 1.0NL stream)
==================================================================================
+1GHU6O5: ITPJCORE:WINNT - RMIC test fail
1GHH6O7: ITPJCORE:ALL - Need to tune the exception analysis for AssertStatement
1GHUW7T: ITPJCORE:WIN2000 - Build Problem
1GHU4PK: ITPJCORE:WINNT - NoSuchMethodError when running program
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/CodeStream.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/CodeStream.java
index a15459fd27..4918946067 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/CodeStream.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/CodeStream.java
@@ -2889,6 +2889,7 @@ public void invokeClassForName() {
public void invokeJavaLangClassDesiredAssertionStatus() {
// invokevirtual: java.lang.Class.desiredAssertionStatus()Z;
countLabels = 0;
+ stackDepth--;
try {
position++;
bCodeStream[classFileOffset++] = OPC_invokevirtual;
@@ -3105,7 +3106,7 @@ public void invokeJavaLangAssertionErrorDefaultConstructor() {
resizeByteArray(OPC_invokespecial);
}
writeUnsignedShort(constantPool.literalIndexForJavaLangAssertionErrorDefaultConstructor());
- stackDepth -= 2;
+ stackDepth --;
}
public void invokeStringBufferDefaultConstructor() {

Back to the top