Commit 11012cd6 by Nitin Yewale Committed by Jeff Law

* gcc.dg/h8300-ice2.c : New test

From-SVN: r83912
parent 9abf398d
2004-06-30 Nitin Yewale <nitiny@kpitcummins.com>
* gcc.dg/h8300-ice2.c : New test
2004-06-30 Tobias Schlueter <tobias.shclueter@physik.uni-muenchen.de>
PR fortran/16161
......
/*{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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment