Commit 438451cc by Kazu Hirata Committed by Kazu Hirata

* gcc.c-torture/execute/20020127-1.c: New test.

From-SVN: r49270
parent 8ed43adf
2002-01-27 Kazu Hirata <kazu@hxi.com>
* gcc.c-torture/execute/20020127-1.c: New test.
2002-01-27 David Billinghurst <David.Billinghurst@riotinto.com> 2002-01-27 David Billinghurst <David.Billinghurst@riotinto.com>
* g77.dg/f77-edit-i-in.f: New test * g77.dg/f77-edit-i-in.f: New test
......
/* This used to fail on h8300. */
extern void abort (void);
extern void exit (int);
unsigned long
foo (unsigned long n)
{
return (~n >> 3) & 1;
}
int
main ()
{
if (foo (1 << 3) != 0)
abort ();
if (foo (0) != 1)
abort ();
exit (0);
}
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