X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.c-torture%2Funsorted%2Fpoor.c;fp=gcc%2Ftestsuite%2Fgcc.c-torture%2Funsorted%2Fpoor.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=66d584aff432321299996b6fa1a44197ed71ca47;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.c-torture/unsorted/poor.c b/gcc/testsuite/gcc.c-torture/unsorted/poor.c deleted file mode 100644 index 66d584af..00000000 --- a/gcc/testsuite/gcc.c-torture/unsorted/poor.c +++ /dev/null @@ -1,34 +0,0 @@ -typedef struct -{ - char c[510]; -} s510; - -typedef struct -{ - char c[511]; -} s511; - -s510 G510, s1; -s511 G511; -int I, J; -double D; - -void main(void); -void f0(double D, ...); -s510 f1(double D, ...); -void f2a(s510 S); -void f2b(s511 S); - - -void main(void) -{ - - f0(D, I, J); - - s1 = f1(D, I, D); - - f2a(G510); - - f2b(G511); - -}