Commit 6d334db8 by Mark Mitchell Committed by Mark Mitchell

* verify.c (verify_jvm_instructions): Fix typo.

From-SVN: r45586
parent fb678854
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> 2001-09-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* expr.c (expand_invoke): Const-ification. * expr.c (expand_invoke): Const-ification.
......
...@@ -594,7 +594,7 @@ verify_jvm_instructions (jcf, byte_ops, length) ...@@ -594,7 +594,7 @@ verify_jvm_instructions (jcf, byte_ops, length)
goto push_int; goto push_int;
push_int: push_int:
if (byte_ops[PC] == OPCODE_newarray if (byte_ops[PC] == OPCODE_newarray
|| byte_ops[PC] == OPCODE_newarray) || byte_ops[PC] == OPCODE_anewarray)
int_value = i; int_value = i;
PUSH_TYPE (int_type_node); break; PUSH_TYPE (int_type_node); break;
case OPCODE_lconst_0: case OPCODE_lconst_1: case OPCODE_lconst_0: case OPCODE_lconst_1:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment