aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr97979.c
blob: 44aaff2ab5aa2cb6cf8b188ae8c50cc061f874fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR tree-optimization/97979 */
/* { dg-do compile } */
/* { dg-options "-O2 -fno-tree-ccp" } */

short a = 0;
int b = 0;

void
foo (void)
{
  unsigned short d = b;
  a = d >> -2U;	/* { dg-warning "right shift count >= width of type" } */
}