Workaround for PR icedtea/324

Gary Benson gbenson at redhat.com
Wed Nov 11 08:20:54 PST 2009


Hi all,

This commit works around $SUBJECT.

Cheers,
Gary

-- 
http://gbenson.net/
-------------- next part --------------
diff -r 79079fb4d3b4 -r b3d03017bdef ChangeLog
--- a/ChangeLog	Wed Nov 11 13:52:48 2009 +0000
+++ b/ChangeLog	Wed Nov 11 10:50:38 2009 -0500
@@ -1,3 +1,9 @@
+2009-11-11  Gary Benson  <gbenson at redhat.com>
+
+	PR icedtea/324:
+	* ports/hotspot/src/share/vm/shark/sharkValue.cpp
+	(SharkNormalValue::jarray_value): Work around the above.
+
 2009-11-11  Gary Benson  <gbenson at redhat.com>
 
 	* ports/hotspot/src/share/vm/shark/sharkType.hpp
diff -r 79079fb4d3b4 -r b3d03017bdef ports/hotspot/src/share/vm/shark/sharkValue.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkValue.cpp	Wed Nov 11 13:52:48 2009 +0000
+++ b/ports/hotspot/src/share/vm/shark/sharkValue.cpp	Wed Nov 11 10:50:38 2009 -0500
@@ -220,7 +220,9 @@
 }
 Value* SharkNormalValue::jarray_value() const
 {
-  assert(is_jarray(), "should be");
+  // XXX assert(is_jarray(), "should be");
+  // XXX http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=324
+  assert(is_jobject(), "should be");
   return llvm_value();
 }
 int SharkAddressValue::address_value() const


More information about the distro-pkg-dev mailing list