1/* PR tree-optimization/53058 */
2
3int a, b, c;
4
5void
6foo ()
7{
8  c = b >> 16;
9  if (c > 32767)
10    c = 0;
11  a = b;
12}
13