Changeset 5a95b25 in mainline for arch/mips32/src/fmath.c
- Timestamp:
- 2005-12-13T11:23:14Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 91ef0d95
- Parents:
- 5bb8e45
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/src/fmath.c
r5bb8e45 r5a95b25 44 44 double fmath_get_decimal_exponent(double num) 45 45 { //TODO: 46 double value;46 // double value; 47 47 // log10(2)*log2(x) => log10(x) 48 48 /* __asm__ __volatile__ ( \ … … 51 51 "fyl2x #count st(0)*log2(st(1))->st(1); pop st(0) \n\t" \ 52 52 : "=t" (value) : "0"(num) ); 53 */ return value;53 */ return 1.0; 54 54 55 55 }
Note:
See TracChangeset
for help on using the changeset viewer.