* gcc.dg/20030626-1.c: Use signed char.

From-SVN: r68525
This commit is contained in:
Eric Botcazou 2003-06-26 13:40:58 +02:00 committed by Eric Botcazou
parent 6dc208a1ed
commit 998c7773b5
2 changed files with 5 additions and 1 deletions

View 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.

View File

@ -9,7 +9,7 @@
struct str {
int head;
char data[8];
signed char data[8];
};
int foo(struct str t)