X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2Fcomplex-3.c;fp=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2Fcomplex-3.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=4297cf11ebddcfc52f2d27332886957f353e90d8;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.c-torture/execute/complex-3.c b/gcc/testsuite/gcc.c-torture/execute/complex-3.c deleted file mode 100644 index 4297cf11..00000000 --- a/gcc/testsuite/gcc.c-torture/execute/complex-3.c +++ /dev/null @@ -1,25 +0,0 @@ -struct complex -{ - float r; - float i; -}; - -struct complex cmplx (float, float); - -struct complex -f (float a, float b) -{ - struct complex c; - c.r = a; - c.i = b; - return c; -} - -main () -{ - struct complex z = f (1.0, 0.0); - - if (z.r != 1.0 || z.i != 0.0) - abort (); - exit (0); -}