verify.cc (_Jv_BytecodeVerifier::get_type_val_for_signature): Added `B' case.

* verify.cc (_Jv_BytecodeVerifier::get_type_val_for_signature):
	Added `B' case.

From-SVN: r47162
This commit is contained in:
Tom Tromey 2001-11-19 01:37:28 +00:00 committed by Tom Tromey
parent 590077b070
commit 4c6d901a76
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2001-11-18 Tom Tromey <tromey@redhat.com>
* verify.cc (_Jv_BytecodeVerifier::get_type_val_for_signature):
Added `B' case.
* verify.cc (_Jv_BytecodeVerifier::get_ushort): Use `jint' for
temporary values.
(_Jv_BytecodeVerifier::get_short): Likewise.

View File

@ -137,6 +137,9 @@ private:
case 'Z':
rt = boolean_type;
break;
case 'B':
rt = byte_type;
break;
case 'C':
rt = char_type;
break;