]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/gcc.dg/h8300-ice2.c
951c15deb927d06e7e954ec14fa1e0430f897de5
[gcc.git] / gcc / testsuite / gcc.dg / h8300-ice2.c
1 /* { dg-do compile target { h8300-*-* } } */
2 /* ICE for signed/unsigned long and signed char comparison */
3 int main()
4 {
5 unsigned long ul = 4;
6 long sl = 2;
7 signed char sch = -1;
8 if (ul <= sch);
9 return 0;
10 if (sl <= sch)
11 return 1;
12 }
This page took 0.037897 seconds and 4 git commands to generate.