x86: Extend AVX512 Vectorization for Popcount in Various Modes
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 921207-1.c
blob9722fcf41bf03e7b5ffb5f884db58ff80c0b8fe1
1 /* { dg-additional-options "-std=gnu89" } */
2 f()
4 unsigned b = 0;
6 if (b > ~0U)
7 b = ~0U;
9 return b;
11 main()
13 if (f()!=0)
14 abort();
15 exit (0);