OSDN Git Service

* gcc.dg/20030626-1.c: Use signed char.
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 26 Jun 2003 11:40:58 +0000 (11:40 +0000)
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 26 Jun 2003 11:40:58 +0000 (11:40 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68525 138bc75d-0d04-0410-961f-82ee72b054a4

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

index c988401..08f39ab 100644 (file)
@@ -1,5 +1,9 @@
 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.
 
 2003-06-26  Neil Booth  <neil@daikokuya.co.uk>
index 7d356e0..3a96786 100644 (file)
@@ -9,7 +9,7 @@
 
 struct str { 
   int head; 
-  char data[8];
+  signed char data[8];
 };
 
 int foo(struct str t)