X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.abi%2Fcrash1.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.abi%2Fcrash1.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=8526818c713af62eb05ac8c427cbdf3c13654098;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.abi/crash1.C b/gcc/testsuite/g++.old-deja/g++.abi/crash1.C deleted file mode 100644 index 8526818c..00000000 --- a/gcc/testsuite/g++.old-deja/g++.abi/crash1.C +++ /dev/null @@ -1,21 +0,0 @@ -// Build don't link: -// -// Copyright (C) 2001 Free Software Foundation, Inc. -// Contributed by Nathan Sidwell 11 Apr 2001 - -// Bug 1944. We failed to calculate nearly emptiness properly, and -// lost primary too. - -struct A1 {}; -struct A2 {}; - -struct B1 : virtual A1 {}; -struct B2 : virtual A2 {}; - -struct C1 : virtual B2 {}; -struct C2 : virtual B2 {}; - -struct D1 : virtual C1, virtual C2 {}; -struct D2 : virtual C2, virtual B1 {}; - -struct E : virtual D1, virtual D2 {};