This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: FYI: verifier fix


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;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]