* stdlib/tst-makecontext.c (othervar): New variable.
authorJakub Jelinek <jakub@redhat.com>
Thu, 10 Apr 2008 08:26:41 +0000 (08:26 +0000)
committerJakub Jelinek <jakub@redhat.com>
Thu, 10 Apr 2008 08:26:41 +0000 (08:26 +0000)
(cf): Test sign extending the argument to long.
2008-04-10  Jakub Jelinek  <jakub@redhat.com>

* stdlib/tst-makecontext.c (othervar): New variable.
(cf): Test sign extending the argument to long.

ChangeLog
stdlib/tst-makecontext.c

index 21312f6..7903575 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-10  Jakub Jelinek  <jakub@redhat.com>
+
+       * stdlib/tst-makecontext.c (othervar): New variable.
+       (cf): Test sign extending the argument to long.
+
 2008-03-03  Steven Munroe  <sjmunroe@us.ibm.com>
 
        * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: New file.
index 5fe66f6..00f8f19 100644 (file)
@@ -26,11 +26,12 @@ char st1[8192];
 __thread int thr;
 
 int somevar = -76;
+long othervar = -78L;
 
 void
 cf (int i)
 {
-  if (i != -78 || thr != 94)
+  if (i != othervar || thr != 94)
     {
       printf ("i %d thr %d\n", i, thr);
       exit (1);