]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/access20.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / access20.C
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 (file)
index 96093dc..0000000
+++ /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
-    } ;
-} ;