]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* gcc.dg/20030626-1.c: Use signed char.
authorEric Botcazou <ebotcazou@libertysurf.fr>
Thu, 26 Jun 2003 11:40:58 +0000 (13:40 +0200)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Thu, 26 Jun 2003 11:40:58 +0000 (11:40 +0000)
From-SVN: r68525

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/20030626-1.c

index c988401302d2d7a2973ed511ffe6f5e3a1cf203c..08f39ab4f47a2d9313608c8774b337feec3fb3c5 100644 (file)
@@ -1,3 +1,7 @@
+2003-06-26  Eric Botcazou <ebotcazou@libertysurf.fr>
+
+       * gcc.dg/20030626-1.c: Use signed char.
+
 2003-06-26  Eric Botcazou <ebotcazou@libertysurf.fr>
 
        * gcc.dg/20030626-1.c: New test.
index 7d356e0050bb7e07a3489e9868248683a2498353..3a96786fefea386fe7723a538e64f358f95793d8 100644 (file)
@@ -9,7 +9,7 @@
 
 struct str { 
   int head; 
-  char data[8];
+  signed char data[8];
 };
 
 int foo(struct str t)