mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 17:03:02 +00:00
[CRT/x64] Correctly implement fabs for GCC
Note that MSVC does not recognize 'fabs' as a valid label name. Seefee844b6ff
and2f7cf157d8
This commit is contained in:
parent
349e0ddde8
commit
bbf7b5b72a
1 changed files with 6 additions and 0 deletions
|
@ -13,8 +13,14 @@
|
||||||
/* CODE **********************************************************************/
|
/* CODE **********************************************************************/
|
||||||
.code64
|
.code64
|
||||||
|
|
||||||
|
#ifdef _USE_ML
|
||||||
|
/* fabs is now allowed as label name, so create _fabs instead and alias fabs to it */
|
||||||
PUBLIC _fabs
|
PUBLIC _fabs
|
||||||
_fabs:
|
_fabs:
|
||||||
|
#else
|
||||||
|
PUBLIC fabs
|
||||||
|
fabs:
|
||||||
|
#endif
|
||||||
UNIMPLEMENTED fabs
|
UNIMPLEMENTED fabs
|
||||||
ret
|
ret
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue