Make computation of "biggest_pointer" vaguely more portable. (#137498,
authorOwen Taylor <otaylor@redhat.com>
Fri, 19 Mar 2004 16:13:37 +0000 (16:13 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Fri, 19 Mar 2004 16:13:37 +0000 (16:13 +0000)
Fri Mar 19 11:07:06 2004  Owen Taylor  <otaylor@redhat.com>

        * tests/atomic-test.c (main): Make computation
        of "biggest_pointer" vaguely more portable.
        (#137498, Jonas Jonsson)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
tests/atomic-test.c

index beeb31f..95c2f92 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Mar 19 11:07:06 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * tests/atomic-test.c (main): Make computation
+       of "biggest_pointer" vaguely more portable.
+       (#137498, Jonas Jonsson)
+
 2004-03-16  Tor Lillqvist  <tml@iki.fi>
 
        * configure.in: Define HAVE_INT64_AND_I64 also in the mingw (gcc
index beeb31f..95c2f92 100644 (file)
@@ -1,3 +1,9 @@
+Fri Mar 19 11:07:06 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * tests/atomic-test.c (main): Make computation
+       of "biggest_pointer" vaguely more portable.
+       (#137498, Jonas Jonsson)
+
 2004-03-16  Tor Lillqvist  <tml@iki.fi>
 
        * configure.in: Define HAVE_INT64_AND_I64 also in the mingw (gcc
index beeb31f..95c2f92 100644 (file)
@@ -1,3 +1,9 @@
+Fri Mar 19 11:07:06 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * tests/atomic-test.c (main): Make computation
+       of "biggest_pointer" vaguely more portable.
+       (#137498, Jonas Jonsson)
+
 2004-03-16  Tor Lillqvist  <tml@iki.fi>
 
        * configure.in: Define HAVE_INT64_AND_I64 also in the mingw (gcc
index beeb31f..95c2f92 100644 (file)
@@ -1,3 +1,9 @@
+Fri Mar 19 11:07:06 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * tests/atomic-test.c (main): Make computation
+       of "biggest_pointer" vaguely more portable.
+       (#137498, Jonas Jonsson)
+
 2004-03-16  Tor Lillqvist  <tml@iki.fi>
 
        * configure.in: Define HAVE_INT64_AND_I64 also in the mingw (gcc
index beeb31f..95c2f92 100644 (file)
@@ -1,3 +1,9 @@
+Fri Mar 19 11:07:06 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * tests/atomic-test.c (main): Make computation
+       of "biggest_pointer" vaguely more portable.
+       (#137498, Jonas Jonsson)
+
 2004-03-16  Tor Lillqvist  <tml@iki.fi>
 
        * configure.in: Define HAVE_INT64_AND_I64 also in the mingw (gcc
index beeb31f..95c2f92 100644 (file)
@@ -1,3 +1,9 @@
+Fri Mar 19 11:07:06 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * tests/atomic-test.c (main): Make computation
+       of "biggest_pointer" vaguely more portable.
+       (#137498, Jonas Jonsson)
+
 2004-03-16  Tor Lillqvist  <tml@iki.fi>
 
        * configure.in: Define HAVE_INT64_AND_I64 also in the mingw (gcc
index 323fec8..c2a67e4 100644 (file)
@@ -13,7 +13,7 @@ main (int   argc,
   gint i;
   gint atomic = -5;
   gpointer atomic_pointer = NULL;
-  gpointer biggest_pointer = atomic_pointer - 1;
+  gpointer biggest_pointer = (gpointer)((gsize)atomic_pointer - 1);
 
   for (i = 0; i < 15; i++)
     g_atomic_int_inc (&atomic);