2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / anon4.C
blob588bf263c8dd17e2bdc8c0ccbf2ef652aad8b352
1 // { dg-do assemble  }
2 // { dg-options "-O" }
3 // PRMS Id: 5371
4 // Bug: g++ screws up the alignment of buff and dies.
6 main()
8   union {
9     double a;
10     char buff[sizeof(double)];
11   };
13   void *p = buff;