* verify.c (verify_jvm_instructions): Fix typo.
From-SVN: r45586
This commit is contained in:
parent
fb67885447
commit
6d334db811
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue