changeset 1305:972ccbe95125

2009-01-09 Gary Benson <gbenson@redhat.com> * ports/hotspot/src/cpu/zero/vm/cppInterpreter_zero.cpp (CppInterpreter::main_loop): Catch unhandled messages.
author Gary Benson <gbenson@redhat.com>
date Fri, 09 Jan 2009 07:21:33 -0500
parents 8ed37e6cc2df
children bc82fc344da8
files ChangeLog ports/hotspot/src/cpu/zero/vm/cppInterpreter_zero.cpp
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Jan 09 07:19:20 2009 -0500
+++ b/ChangeLog	Fri Jan 09 07:21:33 2009 -0500
@@ -1,3 +1,8 @@
+2009-01-09  Gary Benson  <gbenson@redhat.com>
+
+	* ports/hotspot/src/cpu/zero/vm/cppInterpreter_zero.cpp
+	(CppInterpreter::main_loop): Catch unhandled messages.
+
 2009-01-09  Gary Benson  <gbenson@redhat.com>
 
 	* patches/icedtea-cc-interp-jvmti.patch: Also disable pop_frame.
--- a/ports/hotspot/src/cpu/zero/vm/cppInterpreter_zero.cpp	Fri Jan 09 07:19:20 2009 -0500
+++ b/ports/hotspot/src/cpu/zero/vm/cppInterpreter_zero.cpp	Fri Jan 09 07:21:33 2009 -0500
@@ -156,6 +156,9 @@
       assert(HAS_PENDING_EXCEPTION, "should do");
       break;
     }
+    else {
+      ShouldNotReachHere();
+    }
   }
 
  unwind_and_return: