On amd64 builds, where we don't have underscored symbols, create an alias fabs for the function _fabs, since we cannot create fabs as a label directly

svn path=/trunk/; revision=52481
This commit is contained in:
Timo Kreuzer 2011-06-27 10:50:09 +00:00
parent 0d984ab4e1
commit 2f7cf157d8

View file

@ -18,4 +18,8 @@ _fabs:
UNIMPLEMENTED fabs
ret
#ifdef _USE_ML
ALIAS <fabs> = <_fabs>
#endif
END