1. 1bfc89b Add isInteger() to APFloat. by Stephen Canon · 10 years ago
  2. 37dce44 Drop the hacks used for partial C99 math libraries. by Benjamin Kramer · 11 years ago
  3. 12b12e8 [APFloat][ADT] Fix sign handling logic for FMA results that truncate to zero. by Lang Hames · 11 years ago
  4. 56c0eb2 [ADT] Fix PR20728 - Incorrect APFloat::fusedMultiplyAdd results for x86_fp80. by Lang Hames · 11 years ago
  5. afe56ae [ADT] Add an (ADL-friendly) abs free function for APFloat that returns by Chandler Carruth · 11 years ago
  6. 5ccdb98 Add minnum / maxnum to APFloat by Matt Arsenault · 11 years ago
  7. ca06714 [ADT] Replace the logb implementation with the simpler and much closer by Chandler Carruth · 11 years ago
  8. d9edd1e [ADT] Add the scalbn function for APFloat. by Chandler Carruth · 11 years ago
  9. 7468b06 [ADT] Implement the 'logb' functionality for APFloat. This is necessary by Chandler Carruth · 11 years ago
  10. df782e4 [ADT] Add basic operator overloads for arithmetic to APFloat to make by Chandler Carruth · 11 years ago
  11. 66f09ad [C++11] Use 'nullptr'. by Craig Topper · 11 years ago
  12. d327828 APFloat: x - NaN needs to flip the signbit of NaN when x is a number. by Stephen Canon · 11 years ago
  13. e72f132 Change default # of digits for APFloat::toString by Eli Friedman · 12 years ago
  14. b33f944 Revert r189442 "Change default # of digits for APFloat::toString" by Ted Kremenek · 12 years ago
  15. 14cede2 Change default # of digits for APFloat::toString by Eli Friedman · 12 years ago
  16. b0e688e [APFloat] Make all arithmetic operations with NaN produce positive NaNs. by Michael Gottesman · 12 years ago
  17. d2eb07a Handle '.' correctly in hex float literal parsing. by Eli Friedman · 12 years ago
  18. 228156c [APFloat] Ensure that we can properly parse strings that do not have null terminators. by Michael Gottesman · 12 years ago
  19. 3eacb58 [APFloat] Added unittest for APFloat.divide that checks special cases, result categories, and result statuses. by Michael Gottesman · 12 years ago
  20. ba2c0b9 Removed two logging printf statements from the APFloat tests... = /. by Michael Gottesman · 12 years ago
  21. 9debdfd [APFloat] Added unittest for APFloat.multiply that checks special cases, result categories, and result status. by Michael Gottesman · 12 years ago
  22. 9368a53 [APFloat] Added unittest for APFloat.subtract that checks special cases, result categories, and result status. by Michael Gottesman · 12 years ago
  23. 734508d [APFloat] Removed debugging cruft that snuck in. by Michael Gottesman · 12 years ago
  24. f989929 [APFloat] Removed trailing whitespace from unittests. by Michael Gottesman · 12 years ago
  25. e45b108 [APFloat] Added a large unittest for APFloat.add that checks that special values are computed correctly. by Michael Gottesman · 12 years ago
  26. 120c9288 [APFloat] Rename isIEEENormal => isNormal and remove old isNormal method. by Michael Gottesman · 12 years ago
  27. d7c0561 [APFloat] Fix typo in test so we actually test if we handle denormals. by Michael Gottesman · 12 years ago
  28. b5101ab [APFloat] Changed APFloat::isNormal => APFloat::isFiniteNonZero for all tests in unittests. by Michael Gottesman · 12 years ago
  29. d95d447 [APFloat] Added isFiniteNonZero predicate. by Michael Gottesman · 12 years ago
  30. 3acedb6 IEEE-754R 5.7.2 General Operations is* operations (except for isCanonical). by Michael Gottesman · 12 years ago
  31. 0bb474f Try to avoid "integer literal too big" warnings from older GCCs. by Benjamin Kramer · 12 years ago
  32. fc718c9 [APFloat] Added a unittest for APFloat::getZero. by Michael Gottesman · 12 years ago
  33. 0c622ea Implement IEEE-754R 2008 nextUp/nextDown functions in the guise of the function APFloat::next(bool nextDown). by Michael Gottesman · 12 years ago
  34. 0db7c27 Added a unittest for APFloat::getSmallestNormalized. by Michael Gottesman · 12 years ago
  35. 5455d5b Added code to the unittest for APFloat::getSmallest to double check that we consider the result to be denormal. by Michael Gottesman · 12 years ago
  36. 63e6d21 Add a unittest for APFloat::getSmallest. by Michael Gottesman · 12 years ago
  37. bbddbac Fix a bug that APFloat::fusedMultiplyAdd() mistakenly evaluate "14.5f * -14.5f + 225.0f" to 225.0f. by Shuxin Yang · 12 years ago
  38. b361adb APFloat: Make sure that we get a well-formed x87 NaN when converting from a smaller type. by Benjamin Kramer · 13 years ago
  39. 4fb504f Implement APFloat::isDenormal() by Shuxin Yang · 13 years ago
  40. 130cec2 Sort the #include lines for unittest/... by Chandler Carruth · 13 years ago
  41. 08be41a Drop the limitation to IEEE floating point types from the fdiv of pow2 -> fmul transform. by Benjamin Kramer · 13 years ago
  42. d9f7e25 Implement arithmetic on APFloat with PPCDoubleDouble semantics by by Ulrich Weigand · 13 years ago
  43. c38fab2 APFloat::roundToIntegral: Special values don't keep the exponent value up to date, don't rely on it. by Benjamin Kramer · 13 years ago
  44. 352dfff Fix another roundToIntegral bug where very large values could become infinity. Problem and solution identified by Steve Canon. by Owen Anderson · 13 years ago
  45. 1ff74b0 Fix a problem with APFloat::roundToIntegral where it would return incorrect results for negative inputs to trunc. Add unit tests to verify this behavior. by Owen Anderson · 13 years ago
  46. a84ad7d Fix APFloat::convert so that it handles narrowing conversions correctly; it by Eli Friedman · 14 years ago
  47. 212e447 Attempt to fix MSVC build. by Eli Friedman · 14 years ago
  48. c532201 Fix APFloat::getLargest so that it actually returns the correct value. Found by accident while reviewing a patch to nearby code. by Eli Friedman · 14 years ago
  49. a421ee1 Fix a test that wasn't testing the right thing. by Matt Beaumont-Gay · 14 years ago
  50. 03b81a2 Add an APFloat::convertToInt(APSInt) function that automatically manages the by Jeffrey Yasskin · 14 years ago
  51. af0ed95 Avoid turning a floating point division with a constant power of two into a denormal multiplication. by Benjamin Kramer · 15 years ago
  52. 03fd672 Add APFloat::getExactInverse. by Benjamin Kramer · 15 years ago
  53. b5cd013 Fix death tests in -Asserts builds. by Jeffrey Yasskin · 16 years ago
  54. dcb9a7a Teach APFloat how to create both QNaNs and SNaNs and with arbitrary-width by John McCall · 16 years ago
  55. b42cc68 Make APFloat's string-parsing routines a bit safer against very large exponents. by John McCall · 16 years ago
  56. df951bd Make APInt::countLeadingZerosSlowCase() treat the contents of padding bits by John McCall · 16 years ago
  57. dd5044a Implement support for converting to string at "natural precision", and fix some by John McCall · 16 years ago
  58. 29b5c28 Add accessors for the largest-magnitude, smallest-magnitude, and by John McCall · 16 years ago
  59. bc52e4f Add test for PR4873, which works for me. by Daniel Dunbar · 16 years ago
  60. da666c8 Add support for including '+' in APFloat strings, more asserts, by Erick Tryzelaar · 16 years ago
  61. bf5998e Fix two APFloat bugs in converting hexadecimal constants. by Daniel Dunbar · 16 years ago
  62. 927191f Wrap unit test death tests in GTEST_HAS_DEATH_TEST by Erick Tryzelaar · 16 years ago
  63. bc0d749 Change APFloatTest from using ASSERTs to EXPECTs by Erick Tryzelaar · 16 years ago
  64. 19f63b2 Modify APFloat to take a StringRef instead of a c string. by Erick Tryzelaar · 16 years ago