Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / tree-ssa / pr22071.C
blob719aed374507c2340e34508e6521b7c86aef1a43
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 /* This code ends up taking the address of part of the structure that is padding, 
5    and because there is no real field there, the structure alias analyzer would 
6    abort.  */
7 struct empty_class {};
8 struct class1 : empty_class
10   class1() {}
11   empty_class value_;
13 struct lambda : class1 { };
14 lambda _1;