Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / c-c++-common / Wshift-count-overflow-2.c
blob92032c024a29967f50fe3dd548b62129fc0c4346
1 /* { dg-do compile } */
2 /* { dg-options "-Wno-shift-count-overflow" } */
4 void foo()
6 unsigned i1 = 1U << (sizeof(unsigned) * __CHAR_BIT__);
7 unsigned i2 = 1U >> (sizeof(unsigned) * __CHAR_BIT__);