/hg/icedtea6: 2009-08-28 Gary Benson <gbenson at redhat.com>

gbenson at icedtea.classpath.org gbenson at icedtea.classpath.org
Fri Aug 28 02:58:47 PDT 2009


changeset ba0c7c6c4896 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=ba0c7c6c4896
author: Gary Benson <gbenson at redhat.com>
date: Fri Aug 28 11:01:49 2009 +0100

	2009-08-28 Gary Benson <gbenson at redhat.com>

	 * ports/hotspot/src/share/vm/shark/sharkState.cpp
	(SharkEntryState::SharkEntryState): Handle T_NULL.


diffstat:

2 files changed, 9 insertions(+)
ChangeLog                                       |    5 +++++
ports/hotspot/src/share/vm/shark/sharkState.cpp |    4 ++++

diffs (26 lines):

diff -r c2ab93e26ed7 -r ba0c7c6c4896 ChangeLog
--- a/ChangeLog	Thu Aug 27 13:16:24 2009 -0400
+++ b/ChangeLog	Fri Aug 28 11:01:49 2009 +0100
@@ -1,3 +1,8 @@ 2009-08-27  Deepak Bhole <dbhole at redhat.
+2009-08-28  Gary Benson  <gbenson at redhat.com>
+
+	* ports/hotspot/src/share/vm/shark/sharkState.cpp
+	(SharkEntryState::SharkEntryState): Handle T_NULL.
+
 2009-08-27  Deepak Bhole <dbhole at redhat.com>
 
 	* plugin/icedteanp/IcedTeaNPPlugin.cc
diff -r c2ab93e26ed7 -r ba0c7c6c4896 ports/hotspot/src/share/vm/shark/sharkState.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkState.cpp	Thu Aug 27 13:16:24 2009 -0400
+++ b/ports/hotspot/src/share/vm/shark/sharkState.cpp	Fri Aug 28 11:01:49 2009 +0100
@@ -216,6 +216,10 @@ SharkEntryState::SharkEntryState(SharkTo
       value = SharkValue::create_generic(type, NULL, i == 0 && !is_static());
       break;
     
+    case ciTypeFlow::StateVector::T_NULL:
+      value = SharkValue::null();
+      break;
+      
     case ciTypeFlow::StateVector::T_BOTTOM:
       break;
 



More information about the distro-pkg-dev mailing list