changeset in /hg/icedtea: 2007-12-18 Gary Benson <gbenson at redh...

Gary Benson gbenson at redhat.com
Tue Dec 18 02:14:02 PST 2007


changeset 7fc7629ace8b in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=7fc7629ace8b
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 9f2e7abafdef -r 7fc7629ace8b 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 9f2e7abafdef -r 7fc7629ace8b 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