changeset in /hg/icedtea6: 2009-01-09 Gary Benson <gbenson at red...

Gary Benson gbenson at redhat.com
Fri Jan 9 04:23:08 PST 2009


changeset 972ccbe95125 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=972ccbe95125
description:
	2009-01-09  Gary Benson  <gbenson at redhat.com>

		* ports/hotspot/src/cpu/zero/vm/cppInterpreter_zero.cpp
		(CppInterpreter::main_loop): Catch unhandled messages.

diffstat:

2 files changed, 8 insertions(+)
ChangeLog                                             |    5 +++++
ports/hotspot/src/cpu/zero/vm/cppInterpreter_zero.cpp |    3 +++

diffs (25 lines):

diff -r 8ed37e6cc2df -r 972ccbe95125 ChangeLog
--- 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 at redhat
+2009-01-09  Gary Benson  <gbenson at redhat.com>
+
+	* ports/hotspot/src/cpu/zero/vm/cppInterpreter_zero.cpp
+	(CppInterpreter::main_loop): Catch unhandled messages.
+
 2009-01-09  Gary Benson  <gbenson at redhat.com>
 
 	* patches/icedtea-cc-interp-jvmti.patch: Also disable pop_frame.
diff -r 8ed37e6cc2df -r 972ccbe95125 ports/hotspot/src/cpu/zero/vm/cppInterpreter_zero.cpp
--- 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 @@ void CppInterpreter::main_loop(int recur
       assert(HAS_PENDING_EXCEPTION, "should do");
       break;
     }
+    else {
+      ShouldNotReachHere();
+    }
   }
 
  unwind_and_return:



More information about the distro-pkg-dev mailing list