Workaround for PR icedtea/324

View: New views
3 Messages — Rating Filter:   Alert me  

Workaround for PR icedtea/324

by Gary Benson :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi all,

This commit works around $SUBJECT.

Cheers,
Gary

--
http://gbenson.net/

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@...>
+
+ PR icedtea/324:
+ * ports/hotspot/src/share/vm/shark/sharkValue.cpp
+ (SharkNormalValue::jarray_value): Work around the above.
+
 2009-11-11  Gary Benson  <gbenson@...>
 
  * 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

Re: Workaround for PR icedtea/324

by gnu_andrew :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

2009/11/11 Gary Benson <gbenson@...>:

> Hi all,
>
> This commit works around $SUBJECT.
>
> Cheers,
> Gary
>
> --
> http://gbenson.net/
>

Haha, I like the brevity ;)
--
Andrew :-)

Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)

Support Free Java!
Contribute to GNU Classpath and the OpenJDK
http://www.gnu.org/software/classpath
http://openjdk.java.net

PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
Fingerprint: F8EF F1EA 401E 2E60 15FA  7927 142C 2591 94EF D9D8

Re: Workaround for PR icedtea/324

by Gary Benson :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Andrew John Hughes wrote:
> 2009/11/11 Gary Benson <gbenson@...>:
> > This commit works around $SUBJECT.
>
> Haha, I like the brevity ;)

I've written a lot of emails today ;)

Cheers,
Gary

--
http://gbenson.net/