X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.jason%2Faccess20.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.jason%2Faccess20.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=96093dc019037cbecae5c3cf3dd8820cd775f63b;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.jason/access20.C b/gcc/testsuite/g++.old-deja/g++.jason/access20.C deleted file mode 100644 index 96093dc0..00000000 --- a/gcc/testsuite/g++.old-deja/g++.jason/access20.C +++ /dev/null @@ -1,39 +0,0 @@ -// PRMS Id: 6662 -// Bug: we crash trying to check the access on anglesSinesCosines. -// Build don't link: - -#define Double double - -class GCTransform -{ - protected: - struct angle - { - Double phi1 ; - Double phi2 ; - } ; - - struct sineAndCosine - { - Double cosine1 ; - Double cosine2 ; - Double sine1 ; - Double sine2 ; - } ; - - union anglesSinesCosines - { - struct angle a ; - struct sineAndCosine siCo ; - } ; -}; - -class GCTransTransmit : public GCTransform -{ - protected: - - struct GCTransTransmitDataTemp - { - union anglesSinesCosines t ; // causes abort - } ; -} ;