X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.dg%2Fother%2Fanon-union.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.dg%2Fother%2Fanon-union.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=51598bf3adecb9f4e9d7ebb1d99f32933d9eaf23;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.dg/other/anon-union.C b/gcc/testsuite/g++.dg/other/anon-union.C deleted file mode 100644 index 51598bf3..00000000 --- a/gcc/testsuite/g++.dg/other/anon-union.C +++ /dev/null @@ -1,22 +0,0 @@ -// { dg-do compile } -// { dg-options -O2 } - -int foo (); -double bar (void) -{ - union - { - char a[8]; - double b; - }; - - a[0] = foo (); - a[1] = foo (); - a[2] = foo (); - a[3] = foo (); - a[4] = foo (); - a[5] = foo (); - a[6] = foo (); - a[7] = foo (); - return b; -}