1/* PR rtl-optimization/52113 */
2
3unsigned long v1;
4unsigned char v2;
5
6void
7foo (void)
8{
9  if (v1 > (v2 * 1000L))
10    v1 = 0;
11}
12