mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +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"
|
"fmulp\n\t"
|
||||||
: "=t" (result)
|
: "=t" (result)
|
||||||
: "0" (x), "u" (y)
|
: "0" (x), "u" (y)
|
||||||
: "st(1)", "st(7)", "%3", "%4" );
|
: "st(1)", "st(7)" );
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
#define pow pow_x87_inline
|
#define pow pow_x87_inline
|
||||||
|
|
Loading…
Reference in a new issue