This commit was manufactured by cvs2svn to create branch

'gcc-3_1-branch'.

From-SVN: r52105
This commit is contained in:
No Author 2002-04-10 02:23:35 +00:00
parent 4831961528
commit 2da3687b32
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
/* PR c/5078 */
#include <limits.h>
int f(int i)
{
i -= 2 * (INT_MAX + 1);
return i;
}