Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / other / infloop-1.C
blob6c851c7e5e9be02f3bb3ab6ddcd0609813518eaa
1 // PR 18300: This sends old compilers into an infinite loop on x86_64
2 // Testcase and patch contributed by Zak Kipling <zak@transversal.com>
4 struct base1 { };
5 struct base2 { };
6 struct base3 { };
8 struct derived : base1, base2, base3 { };
10 void foo(derived);
12 int main()
14   foo(derived());