Commit b13d32a8 by Jeffrey A Law Committed by Jeff Law

* gcc.c-torture/compile/991213-2.c: New test.

From-SVN: r30898
parent 4767498b
Mon Dec 13 23:03:09 1999 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/991213-2.c: New test.
* gcc.c-torture/compile/991213-1.c: New test.
Fri Dec 10 00:53:10 1999 J"orn Rennecke <amylaar@cygnus.co.uk>
......
typedef long __kernel_time_t;
typedef __kernel_time_t time_t;
time2(
void (* const (funcp)(time_t)),
const long offset, int * const okayp)
{
register int bits;
time_t t;
for (bits = 0, t = 1; t > 0; ++bits, t <<= 1)
;
t = (t < 0) ? 0 : ((time_t) 1 << bits);
for ( ; ; ) {
(*funcp)((time_t)&t);
}
}
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