blob: 5dd746a42e962f1d00178f67e61fb8a17fa513f2 [file] [log] [blame]
/*{dg-do compile target {h8300-*-*}} */
/* 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;
}