[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / lto / pr82414_0.C
blob29753718b547954c789db94e0f7685cd6cab8c18
1 // PR c++/82414
2 // { dg-lto-do link }
3 // { dg-lto-options { { -flto -g } } }
5 typedef __attribute__ ((__aligned__ (16))) struct S { __extension__ unsigned long long Part[2]; } T; // bogus warning "violates one definition rule"
7 int
8 main ()
10   T tf;
11   asm volatile ("" : : "g" (__alignof__(tf)), "g" (__alignof__ (struct S)), "g" (__alignof__ (T)));
12   return 0;