This is the mail archive of the
java-patches@sources.redhat.com
mailing list for the Java project.
PATCH: interpret.cc
- To: java-patches at sources dot redhat dot com
- Subject: PATCH: interpret.cc
- From: Andrew Haley <aph at pasanda dot cygnus dot co dot uk>
- Date: 26 Jul 2000 12:42:43 -0000
2000-07-26 Andrew Haley <aph@cygnus.com>
* interpret.cc (continue1): Insert missing break into switch.
Index: interpret.cc
===================================================================
RCS file: /cvs/java/libgcj/libjava/interpret.cc,v
retrieving revision 1.17
diff -u -r1.17 interpret.cc
--- interpret.cc 2000/05/31 22:49:18 1.17
+++ interpret.cc 2000/07/26 12:10:03
@@ -1939,6 +1939,7 @@
{
case 1:
PUSHI (*(jbyte*) (field->u.addr));
+ break;
case 2:
if (type == JvPrimClass (char))