summaryrefslogtreecommitdiff
path: root/unittests/ADT/APFloatTest.cpp
Commit message (Expand)AuthorAge
* [C++11] Use 'nullptr'.Craig Topper2014-06-08
* APFloat: x - NaN needs to flip the signbit of NaN when x is a number.Stephen Canon2014-06-08
* Change default # of digits for APFloat::toStringEli Friedman2013-08-29
* Revert r189442 "Change default # of digits for APFloat::toString"Ted Kremenek2013-08-28
* Change default # of digits for APFloat::toStringEli Friedman2013-08-28
* [APFloat] Make all arithmetic operations with NaN produce positive NaNs.Michael Gottesman2013-07-27
* Handle '.' correctly in hex float literal parsing.Eli Friedman2013-07-17
* [APFloat] Ensure that we can properly parse strings that do not have null ter...Michael Gottesman2013-07-01
* [APFloat] Added unittest for APFloat.divide that checks special cases, result...Michael Gottesman2013-06-27
* Removed two logging printf statements from the APFloat tests... = /.Michael Gottesman2013-06-27
* [APFloat] Added unittest for APFloat.multiply that checks special cases, resu...Michael Gottesman2013-06-26
* [APFloat] Added unittest for APFloat.subtract that checks special cases, resu...Michael Gottesman2013-06-26
* [APFloat] Removed debugging cruft that snuck in.Michael Gottesman2013-06-26
* [APFloat] Removed trailing whitespace from unittests.Michael Gottesman2013-06-24
* [APFloat] Added a large unittest for APFloat.add that checks that special val...Michael Gottesman2013-06-24
* [APFloat] Rename isIEEENormal => isNormal and remove old isNormal method.Michael Gottesman2013-06-20
* [APFloat] Fix typo in test so we actually test if we handle denormals.Michael Gottesman2013-06-20
* [APFloat] Changed APFloat::isNormal => APFloat::isFiniteNonZero for all tests...Michael Gottesman2013-06-19
* [APFloat] Added isFiniteNonZero predicate.Michael Gottesman2013-06-19
* IEEE-754R 5.7.2 General Operations is* operations (except for isCanonical).Michael Gottesman2013-06-04
* Try to avoid "integer literal too big" warnings from older GCCs.Benjamin Kramer2013-06-01
* [APFloat] Added a unittest for APFloat::getZero.Michael Gottesman2013-05-31
* Implement IEEE-754R 2008 nextUp/nextDown functions in the guise of the functi...Michael Gottesman2013-05-30
* Added a unittest for APFloat::getSmallestNormalized.Michael Gottesman2013-05-30
* Added code to the unittest for APFloat::getSmallest to double check that we c...Michael Gottesman2013-05-30
* Add a unittest for APFloat::getSmallest.Michael Gottesman2013-05-29
* Fix a bug that APFloat::fusedMultiplyAdd() mistakenly evaluate "14.5f * -14.5...Shuxin Yang2013-05-13
* APFloat: Make sure that we get a well-formed x87 NaN when converting from a s...Benjamin Kramer2013-01-25
* Implement APFloat::isDenormal()Shuxin Yang2013-01-07
* Sort the #include lines for unittest/...Chandler Carruth2012-12-04
* Drop the limitation to IEEE floating point types from the fdiv of pow2 -> fmu...Benjamin Kramer2012-11-08
* Implement arithmetic on APFloat with PPCDoubleDouble semantics byUlrich Weigand2012-10-29
* APFloat::roundToIntegral: Special values don't keep the exponent value up to ...Benjamin Kramer2012-09-26
* Fix another roundToIntegral bug where very large values could become infinity...Owen Anderson2012-08-15
* Fix a problem with APFloat::roundToIntegral where it would return incorrect r...Owen Anderson2012-08-15
* Fix APFloat::convert so that it handles narrowing conversions correctly; itEli Friedman2011-11-26
* Attempt to fix MSVC build.Eli Friedman2011-10-12
* Fix APFloat::getLargest so that it actually returns the correct value. Found...Eli Friedman2011-10-12
* Fix a test that wasn't testing the right thing.Matt Beaumont-Gay2011-08-29
* Add an APFloat::convertToInt(APSInt) function that automatically manages theJeffrey Yasskin2011-07-15
* Avoid turning a floating point division with a constant power of two into a d...Benjamin Kramer2011-03-30
* Add APFloat::getExactInverse.Benjamin Kramer2011-03-30
* Fix death tests in -Asserts builds.Jeffrey Yasskin2010-03-17
* Teach APFloat how to create both QNaNs and SNaNs and with arbitrary-widthJohn McCall2010-02-28
* Make APFloat's string-parsing routines a bit safer against very large exponents.John McCall2010-02-26
* Make APInt::countLeadingZerosSlowCase() treat the contents of padding bitsJohn McCall2010-02-03
* Implement support for converting to string at "natural precision", and fix someJohn McCall2009-12-24
* Add accessors for the largest-magnitude, smallest-magnitude, andJohn McCall2009-12-24
* Add test for PR4873, which works for me.Daniel Dunbar2009-09-03
* Add support for including '+' in APFloat strings, more asserts,Erick Tryzelaar2009-08-20