mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- 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:
parent
7511c5385b
commit
2fc338db88
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue