interpret.cc (continue1): Insert missing break into switch.
authorAndrew Haley <aph@cygnus.com>
Fri, 28 Jul 2000 13:11:45 +0000 (13:11 +0000)
committerAndrew Haley <aph@gcc.gnu.org>
Fri, 28 Jul 2000 13:11:45 +0000 (13:11 +0000)
2000-07-26  Andrew Haley  <aph@cygnus.com>

        * interpret.cc (continue1): Insert missing break into switch.

From-SVN: r35316

libjava/ChangeLog
libjava/interpret.cc

index 928787a7cf45db493909a2dc716ac8632cb37579..993ff4594e42dd38b61097f572b93fd8cde778b6 100644 (file)
@@ -1,3 +1,7 @@
+2000-07-26  Andrew Haley  <aph@cygnus.com>
+
+       * interpret.cc (continue1): Insert missing break into switch.
+
 2000-07-28  Warren Levy  <warrenl@cygnus.com>
 
        * java/io/ObjectStreamException.java: Made constructors protected.
index f9fbd3df9fd557a95dd7747cd3710466138e8886..069abdb2858d4cd32db567f8b02341a7405c61ee 100644 (file)
@@ -1939,6 +1939,7 @@ void _Jv_InterpMethod::continue1 (_Jv_InterpMethodInvocation *inv)
              {
              case 1:
                PUSHI (*(jbyte*) (field->u.addr));
+               break;
 
              case 2:
                if (type == JvPrimClass (char))