[Bug 534] zero doesn't work on sparc linux
bugzilla-daemon at icedtea.classpath.org
bugzilla-daemon at icedtea.classpath.org
Thu Sep 2 03:19:00 PDT 2010
http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=534
------- Comment #8 from aph at redhat.com 2010-09-02 10:18 -------
#define SET_STACK_DOUBLE(value, offset)
(((VMJavaVal64*)&topOfStack[-(offset)])->d = (value))
should be
do
{
VMJavaVal64 x = value;
memcpy(&topOfStack[-(offset)]->d, &value, sizeof VMJavaVal64);
}
while (0)
... etc.
--
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the distro-pkg-dev
mailing list