* verify.c (verify_jvm_instructions): Fix typo.
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 14 Sep 2001 00:16:36 +0000 (00:16 +0000)
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 14 Sep 2001 00:16:36 +0000 (00:16 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45586 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 95aafb3..25300de 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 eadb4e6..32e4306 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: