1 /* PR c/5078 */
2 
3 #include <limits.h>
4 
f(int i)5 int f(int i)
6 {
7   i -= 2 * (INT_MAX + 1);
8   return i;
9 }
10