changeset in /hg/icedtea: 2007-12-18 Gary Benson <gbenson at redh...
Gary Benson
gbenson at redhat.com
Wed Jan 16 07:09:41 PST 2008
changeset 2109ddb8dc92 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=2109ddb8dc92
description:
2007-12-18 Gary Benson <gbenson at redhat.com>
* ports/hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp
(_Copy_conjoint_jints_atomic): Invert conditionals for readability.
(_Copy_conjoint_jints_atomic): Likewise.
diffstat:
2 files changed, 14 insertions(+), 8 deletions(-)
ChangeLog | 6 ++++++
ports/hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp | 16 ++++++++--------
diffs (48 lines):
diff -r bf1a4d76ee2d -r 2109ddb8dc92 ChangeLog
--- a/ChangeLog Tue Dec 18 04:36:32 2007 -0500
+++ b/ChangeLog Tue Dec 18 04:59:22 2007 -0500
@@ -1,3 +1,9 @@ 2007-12-18 Gary Benson <gbenson at redhat
+2007-12-18 Gary Benson <gbenson at redhat.com>
+
+ * ports/hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp
+ (_Copy_conjoint_jints_atomic): Invert conditionals for readability.
+ (_Copy_conjoint_jints_atomic): Likewise.
+
2007-12-18 Gary Benson <gbenson at redhat.com>
* ports/hotspot/src/cpu/ppc/vm/bytes_ppc.hpp
diff -r bf1a4d76ee2d -r 2109ddb8dc92 ports/hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp
--- a/ports/hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp Tue Dec 18 04:36:32 2007 -0500
+++ b/ports/hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp Tue Dec 18 04:59:22 2007 -0500
@@ -281,23 +281,23 @@ void os::print_context(outputStream* st,
extern "C" {
-#ifndef PPC32
+#ifdef PPC64
void _Copy_conjoint_jints_atomic(jint* from, jint* to, size_t count)
{
Unimplemented();
}
-#endif // !PPC32
-
-#ifndef PPC64
+#endif // PPC64
+
+#ifdef PPC32
void _Copy_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count)
{
-#if defined(PPC32) && defined(XXX_EVIL_EVIL_EVIL)
+#ifdef XXX_EVIL_EVIL_EVIL
_Copy_conjoint_jints_atomic((jint *) from, (jint *) to, count * 2);
#else
Unimplemented();
-#endif // PPC32 && XXX_EVIL_EVIL_EVIL
- }
-#endif // !PPC64
+#endif // XXX_EVIL_EVIL_EVIL
+ }
+#endif // PPC32
void _Copy_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count)
{
More information about the distro-pkg-dev
mailing list