Fix broken MinGW build of gcc.c
[official-gcc.git] / gcc / testsuite / g++.dg / warn / permissive-1.C
blobbfaca7637824560c4511308e047a14ccc60b829e
1 // PR c++/68979
2 // { dg-do compile { target int32 } }
3 // { dg-options "-fpermissive -Wno-shift-overflow -Wno-shift-count-overflow -Wno-shift-count-negative" }
5 enum A { AA = -1 << 4 }; // { dg-warning "operand of shift expression" "" { target c++11 } }
6 enum B { BB = 1 << -4 }; // { dg-warning "operand of shift expression" }
7 enum C { CC = 1 << __SIZEOF_INT__ * 4 * __CHAR_BIT__ - 4 }; // { dg-warning "operand of shift expression" }
8 enum D { DD = 10 << __SIZEOF_INT__ * __CHAR_BIT__ - 2 }; // { dg-warning "shift expression" "" { target c++11 } }