This commit was manufactured by cvs2svn to create branch

'gcc-3_2-branch'.

From-SVN: r64443
This commit is contained in:
No Author 2003-03-16 19:47:36 +00:00
parent 9eaa910b26
commit e44f00b4fc
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
/* PR target/9164 */
/* The comparison operand was sign extended erraneously. */
int
main (void)
{
long j = 0x40000000;
if ((unsigned int) (0x40000000 + j) < 0L)
abort ();
return 0;
}