Commit 7e1966ca by James Van Artsdalen

*** empty log message ***

From-SVN: r374
parent 6b0ac106
......@@ -3995,3 +3995,20 @@ init_optabs ()
fixunsdfsi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixunsdfsi");
fixunsdfdi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixunsdfdi");
}
#ifdef BROKEN_LDEXP
/* SCO 3.2 apparently has a broken ldexp. */
double
ldexp(x,n)
double x;
int n;
{
if (n > 0)
while (n--)
x *= 2;
return x;
}
#endif /* BROKEN_LDEXP */
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