This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: verifier fix
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 18 Nov 2001 19:02:25 -0700
- Subject: Patch: FYI: verifier fix
- Reply-to: tromey at redhat dot com
More in the continuing series of verifier fixes.
I'm checking this in.
get_type_val_for_signature was missing a case.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* verify.cc (_Jv_BytecodeVerifier::get_type_val_for_signature):
Added `B' case.
Index: verify.cc
===================================================================
RCS file: /cvs/gcc/gcc/libjava/verify.cc,v
retrieving revision 1.10
diff -u -r1.10 verify.cc
--- verify.cc 2001/11/19 01:04:15 1.10
+++ verify.cc 2001/11/19 01:36:51
@@ -137,6 +137,9 @@
case 'Z':
rt = boolean_type;
break;
+ case 'B':
+ rt = byte_type;
+ break;
case 'C':
rt = char_type;
break;