* verify.cc (_Jv_BytecodeVerifier::verify_instructions_0)
[op_lshl, op_lshr, op_lushr]: Shift argument is an int, not a
long.
From-SVN: r47177
+2001-11-19 Tom Tromey <tromey@redhat.com>
+
+ * verify.cc (_Jv_BytecodeVerifier::verify_instructions_0)
+ [op_lshl, op_lshr, op_lushr]: Shift argument is an int, not a
+ long.
+
2001-11-18 Tom Tromey <tromey@redhat.com>
* verify.cc (type::to_array): New method.
case op_lmul:
case op_ldiv:
case op_lrem:
- case op_lshl:
- case op_lshr:
- case op_lushr:
case op_land:
case op_lor:
case op_lxor:
pop_type (long_type);
push_type (pop_type (long_type));
break;
+ case op_lshl:
+ case op_lshr:
+ case op_lushr:
+ pop_type (int_type);
+ push_type (pop_type (long_type));
+ break;
case op_fadd:
case op_fsub:
case op_fmul: