* verify.c (verify_jvm_instructions): Fix typo.

From-SVN: r45586
This commit is contained in:
Mark Mitchell 2001-09-14 00:16:36 +00:00 committed by Mark Mitchell
parent fb67885447
commit 6d334db811
2 changed files with 5 additions and 1 deletions

View 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.

View 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: