LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / pr54472.c
blob20c85b47aede21ae13e0e17e90f2cd660cf801a4
1 /* { dg-do compile { target powerpc*-*-* ia64-*-* i?86-*-* x86_64-*-* } } */
2 /* { dg-options "-O -fschedule-insns -fselective-scheduling" } */
4 int main ()
6 int a[3][3][3];
7 __builtin_memset (a, 0, sizeof a);
8 return 0;