- Removed the integer clobbers from pow_x87_inline, since they interfered with PIC code and

appear unneeded.

SVN r2122 (trunk)
This commit is contained in:
Randy Heit 2010-01-23 20:48:24 +00:00
parent 7511c5385b
commit 2fc338db88
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ extern __inline__ double pow_x87_inline(double x,double y)
"fmulp\n\t"
: "=t" (result)
: "0" (x), "u" (y)
: "st(1)", "st(7)", "%3", "%4" );
: "st(1)", "st(7)" );
return result;
}
#define pow pow_x87_inline