Commit 7d361583 by Richard Henderson Committed by Richard Henderson

New test.

From-SVN: r38029
parent de9e5c23
2000-12-05 Richard Henderson <rth@redhat.com>
* gcc.c-torture/compile/20001205-1.c: New.
2000-12-04 Neil Booth <neilb@earthling.net>
* g++.old-deja/g++.other/virtual9.C: New test.
......
static inline unsigned long rdfpcr(void)
{
unsigned long tmp, ret;
__asm__ ("" : "=r"(tmp), "=r"(ret));
return ret;
}
static inline unsigned long
swcr_update_status(unsigned long swcr, unsigned long fpcr)
{
swcr &= ~0x7e0000ul;
swcr |= (fpcr >> 3) & 0x7e0000ul;
return swcr;
}
unsigned long osf_getsysinfo(unsigned long flags)
{
unsigned long w;
w = swcr_update_status(flags, rdfpcr());
return w;
}
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