| OLD | NEW |
| 1 Name: David M. Gay's floating point routines | 1 Name: David M. Gay's floating point routines |
| 2 URL: http://www.netlib.org/fp/ | 2 URL: http://www.netlib.org/fp/ |
| 3 License: MIT-like |
| 3 | 4 |
| 4 Original dtoa.c file can be found at <http://www.netlib.org/fp/dtoa.c>. | 5 Original dtoa.c file can be found at <http://www.netlib.org/fp/dtoa.c>. |
| 5 Original g_fmt.c file can be found at <http://www.netlib.org/fp/g_fmt.c>. | 6 Original g_fmt.c file can be found at <http://www.netlib.org/fp/g_fmt.c>. |
| 6 | 7 |
| 7 List of changes made to original code: | 8 List of changes made to original code: |
| 8 - wrapped functions in dmg_fp namespace | 9 - wrapped functions in dmg_fp namespace |
| 9 - renamed .c files to .cc | 10 - renamed .c files to .cc |
| 10 - added dmg_fp.h header | 11 - added dmg_fp.h header |
| 11 - added #define IEEE_8087 to dtoa.cc | 12 - added #define IEEE_8087 to dtoa.cc |
| 12 - added #define NO_HEX_FP to dtoa.cc | 13 - added #define NO_HEX_FP to dtoa.cc |
| 13 - made some minor changes to allow clean compilation under g++ -Wall, see | 14 - made some minor changes to allow clean compilation under g++ -Wall, see |
| 14 gcc_warnings.patch. | 15 gcc_warnings.patch. |
| 15 - made some minor changes to build on 64-bit, see gcc_64_bit.patch. | 16 - made some minor changes to build on 64-bit, see gcc_64_bit.patch. |
| 16 - made minor changes for -Wextra for Mac build, see mac_wextra.patch | 17 - made minor changes for -Wextra for Mac build, see mac_wextra.patch |
| 17 - crash fix for running with reduced CPU float precision, see | 18 - crash fix for running with reduced CPU float precision, see |
| 18 float_precision_crash.patch and crbug.com/123157 | 19 float_precision_crash.patch and crbug.com/123157 |
| OLD | NEW |