Add -mcpu=power11 support.
[official-gcc.git] / gcc / testsuite / g++.dg / lto / 20101014-2_0.C
blob0b2a52c616b483affba91079e974c85c81e0a0f6
1 // { dg-lto-do assemble }
3 template<class T, unsigned long l>
4 inline unsigned long foo (T (&)[l]) { return l; }
6 struct S { char *s[4]; S (); };
8 S::S () { typedef int T[foo (s) == 4 ? 1 : -1]; }