1. 120c9288 [APFloat] Rename isIEEENormal => isNormal and remove old isNormal method. by Michael Gottesman · 12 years ago
  2. d7c0561 [APFloat] Fix typo in test so we actually test if we handle denormals. by Michael Gottesman · 12 years ago
  3. b5101ab [APFloat] Changed APFloat::isNormal => APFloat::isFiniteNonZero for all tests in unittests. by Michael Gottesman · 12 years ago
  4. d95d447 [APFloat] Added isFiniteNonZero predicate. by Michael Gottesman · 12 years ago
  5. 3acedb6 IEEE-754R 5.7.2 General Operations is* operations (except for isCanonical). by Michael Gottesman · 12 years ago
  6. 0bb474f Try to avoid "integer literal too big" warnings from older GCCs. by Benjamin Kramer · 12 years ago
  7. fc718c9 [APFloat] Added a unittest for APFloat::getZero. by Michael Gottesman · 12 years ago
  8. 0c622ea Implement IEEE-754R 2008 nextUp/nextDown functions in the guise of the function APFloat::next(bool nextDown). by Michael Gottesman · 12 years ago
  9. 0db7c27 Added a unittest for APFloat::getSmallestNormalized. by Michael Gottesman · 12 years ago
  10. 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
  11. 63e6d21 Add a unittest for APFloat::getSmallest. by Michael Gottesman · 12 years ago
  12. bbddbac Fix a bug that APFloat::fusedMultiplyAdd() mistakenly evaluate "14.5f * -14.5f + 225.0f" to 225.0f. by Shuxin Yang · 12 years ago
  13. b361adb APFloat: Make sure that we get a well-formed x87 NaN when converting from a smaller type. by Benjamin Kramer · 13 years ago
  14. 4fb504f Implement APFloat::isDenormal() by Shuxin Yang · 13 years ago
  15. 130cec2 Sort the #include lines for unittest/... by Chandler Carruth · 13 years ago
  16. 08be41a Drop the limitation to IEEE floating point types from the fdiv of pow2 -> fmul transform. by Benjamin Kramer · 13 years ago
  17. d9f7e25 Implement arithmetic on APFloat with PPCDoubleDouble semantics by by Ulrich Weigand · 13 years ago
  18. 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
  19. 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
  20. 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
  21. a84ad7d Fix APFloat::convert so that it handles narrowing conversions correctly; it by Eli Friedman · 14 years ago
  22. 212e447 Attempt to fix MSVC build. by Eli Friedman · 14 years ago
  23. 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
  24. a421ee1 Fix a test that wasn't testing the right thing. by Matt Beaumont-Gay · 14 years ago
  25. 03b81a2 Add an APFloat::convertToInt(APSInt) function that automatically manages the by Jeffrey Yasskin · 14 years ago
  26. af0ed95 Avoid turning a floating point division with a constant power of two into a denormal multiplication. by Benjamin Kramer · 15 years ago
  27. 03fd672 Add APFloat::getExactInverse. by Benjamin Kramer · 15 years ago
  28. b5cd013 Fix death tests in -Asserts builds. by Jeffrey Yasskin · 16 years ago
  29. dcb9a7a Teach APFloat how to create both QNaNs and SNaNs and with arbitrary-width by John McCall · 16 years ago
  30. b42cc68 Make APFloat's string-parsing routines a bit safer against very large exponents. by John McCall · 16 years ago
  31. df951bd Make APInt::countLeadingZerosSlowCase() treat the contents of padding bits by John McCall · 16 years ago
  32. dd5044a Implement support for converting to string at "natural precision", and fix some by John McCall · 16 years ago
  33. 29b5c28 Add accessors for the largest-magnitude, smallest-magnitude, and by John McCall · 16 years ago
  34. bc52e4f Add test for PR4873, which works for me. by Daniel Dunbar · 16 years ago
  35. da666c8 Add support for including '+' in APFloat strings, more asserts, by Erick Tryzelaar · 16 years ago
  36. bf5998e Fix two APFloat bugs in converting hexadecimal constants. by Daniel Dunbar · 16 years ago
  37. 927191f Wrap unit test death tests in GTEST_HAS_DEATH_TEST by Erick Tryzelaar · 16 years ago
  38. bc0d749 Change APFloatTest from using ASSERTs to EXPECTs by Erick Tryzelaar · 16 years ago
  39. 19f63b2 Modify APFloat to take a StringRef instead of a c string. by Erick Tryzelaar · 16 years ago