blob: 216ea34c94c6e4309bc6b335f2cf0ec8093dc0f4 [file] [log] [blame]
/* { dg-do compile } */
/* ICE for signed/unsigned long and signed char comparison */
int main()
{
unsigned long ul = 4;
long sl = 2;
signed char sch = -1;
if (ul <= sch);
return 0;
if (sl <= sch)
return 1;
}