URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [h8300-ice2.c] - Rev 12
Compare with Previous | Blame | View Log
/*{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; }