testsuite: Skip analyzer tests on AIX.
[official-gcc.git] / gcc / testsuite / c-c++-common / pr65830.c
blob73eb97cff9e5e8701ca072db020f26687c6c68f5
1 /* PR c/65830 */
2 /* { dg-do compile } */
3 /* { dg-options "-O -Wno-shift-count-negative -Wno-shift-count-overflow" } */
5 int
6 foo (int x)
8 const int a = sizeof (int) * __CHAR_BIT__;
9 const int b = -7;
10 int c = 0;
11 c += x << a; /* { dg-bogus "10:left shift count >= width of type" } */
12 c += x << b; /* { dg-bogus "10:left shift count is negative" } */
13 c += x >> a; /* { dg-bogus "10:right shift count >= width of type" } */
14 c += x >> b; /* { dg-bogus "10:right shift count is negative" } */
15 return c;