blob: 6b7e026df270c60f50b6e880efd3c1f2903aefa5 [file] [log] [blame]
/* 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;
}