* verify.c (verify_jvm_instructions): Fix typo.
authorMark Mitchell <mark@codesourcery.com>
Fri, 14 Sep 2001 00:16:36 +0000 (00:16 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Fri, 14 Sep 2001 00:16:36 +0000 (00:16 +0000)
From-SVN: r45586

gcc/java/ChangeLog
gcc/java/verify.c

index 95aafb3746d9556035e5fee5860c05da5db27090..25300de94b25353d1f87de41ff11a49bd1f85cc3 100644 (file)
@@ -1,3 +1,7 @@
+2001-09-13  Mark Mitchell  <mark@codesourcery.com>
+
+       * verify.c (verify_jvm_instructions): Fix typo.
+
 2001-09-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * expr.c (expand_invoke): Const-ification.
index eadb4e653e156e50c90a683baf42bd5d756b8fa8..32e43060fcdb5b9729a61cab781069fa07fd71ee 100644 (file)
@@ -594,7 +594,7 @@ verify_jvm_instructions (jcf, byte_ops, length)
          goto push_int;
        push_int:
          if (byte_ops[PC] == OPCODE_newarray
-             || byte_ops[PC] == OPCODE_newarray)
+             || byte_ops[PC] == OPCODE_anewarray)
            int_value = i;
          PUSH_TYPE (int_type_node);  break;
        case OPCODE_lconst_0:   case OPCODE_lconst_1: