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