aboutsummaryrefslogtreecommitdiffstats
path: root/unittests/ADT/APFloatTest.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master llvm for rebase to r233350Pirama Arumuga Nainar2015-04-091-3/+4
* Update aosp/master LLVM for rebase to r230699.Stephen Hines2015-03-231-0/+41
* Update aosp/master LLVM for rebase to r222494.Stephen Hines2014-12-021-0/+164
* Update LLVM for rebase to r212749.Stephen Hines2014-07-211-27/+27
* Change default # of digits for APFloat::toStringEli Friedman2013-08-291-4/+5
* Revert r189442 "Change default # of digits for APFloat::toString"Ted Kremenek2013-08-281-5/+4
* Change default # of digits for APFloat::toStringEli Friedman2013-08-281-4/+5
* [APFloat] Make all arithmetic operations with NaN produce positive NaNs.Michael Gottesman2013-07-271-86/+36
* Handle '.' correctly in hex float literal parsing.Eli Friedman2013-07-171-1/+6
* [APFloat] Ensure that we can properly parse strings that do not have null ter...Michael Gottesman2013-07-011-0/+25
* [APFloat] Added unittest for APFloat.divide that checks special cases, result...Michael Gottesman2013-06-271-0/+304
* Removed two logging printf statements from the APFloat tests... = /.Michael Gottesman2013-06-271-8/+0
* [APFloat] Added unittest for APFloat.multiply that checks special cases, resu...Michael Gottesman2013-06-261-0/+307
* [APFloat] Added unittest for APFloat.subtract that checks special cases, resu...Michael Gottesman2013-06-261-0/+303
* [APFloat] Removed debugging cruft that snuck in.Michael Gottesman2013-06-261-4/+0
* [APFloat] Removed trailing whitespace from unittests.Michael Gottesman2013-06-241-14/+14
* [APFloat] Added a large unittest for APFloat.add that checks that special val...Michael Gottesman2013-06-241-0/+302
* [APFloat] Rename isIEEENormal => isNormal and remove old isNormal method.Michael Gottesman2013-06-201-7/+7
* [APFloat] Fix typo in test so we actually test if we handle denormals.Michael Gottesman2013-06-201-4/+4
* [APFloat] Changed APFloat::isNormal => APFloat::isFiniteNonZero for all tests...Michael Gottesman2013-06-191-8/+8
* [APFloat] Added isFiniteNonZero predicate.Michael Gottesman2013-06-191-0/+28
* IEEE-754R 5.7.2 General Operations is* operations (except for isCanonical).Michael Gottesman2013-06-041-0/+61
* Try to avoid "integer literal too big" warnings from older GCCs.Benjamin Kramer2013-06-011-7/+7
* [APFloat] Added a unittest for APFloat::getZero.Michael Gottesman2013-05-311-0/+37
* Implement IEEE-754R 2008 nextUp/nextDown functions in the guise of the functi...Michael Gottesman2013-05-301-0/+420
* Added a unittest for APFloat::getSmallestNormalized.Michael Gottesman2013-05-301-0/+30
* Added code to the unittest for APFloat::getSmallest to double check that we c...Michael Gottesman2013-05-301-2/+6
* Add a unittest for APFloat::getSmallest.Michael Gottesman2013-05-291-0/+26
* Fix a bug that APFloat::fusedMultiplyAdd() mistakenly evaluate "14.5f * -14.5...Shuxin Yang2013-05-131-0/+23
* APFloat: Make sure that we get a well-formed x87 NaN when converting from a s...Benjamin Kramer2013-01-251-0/+26
* Implement APFloat::isDenormal()Shuxin Yang2013-01-071-0/+52
* Sort the #include lines for unittest/...Chandler Carruth2012-12-041-4/+4
* Drop the limitation to IEEE floating point types from the fdiv of pow2 -> fmu...Benjamin Kramer2012-11-081-0/+6
* Implement arithmetic on APFloat with PPCDoubleDouble semantics byUlrich Weigand2012-10-291-0/+36
* APFloat::roundToIntegral: Special values don't keep the exponent value up to ...Benjamin Kramer2012-09-261-0/+17
* Fix another roundToIntegral bug where very large values could become infinity...Owen Anderson2012-08-151-1/+14
* Fix a problem with APFloat::roundToIntegral where it would return incorrect r...Owen Anderson2012-08-151-0/+30
* Fix APFloat::convert so that it handles narrowing conversions correctly; itEli Friedman2011-11-261-0/+24
* Attempt to fix MSVC build.Eli Friedman2011-10-121-2/+2
* Fix APFloat::getLargest so that it actually returns the correct value. Found...Eli Friedman2011-10-121-0/+5
* Fix a test that wasn't testing the right thing.Matt Beaumont-Gay2011-08-291-4/+6
* Add an APFloat::convertToInt(APSInt) function that automatically manages theJeffrey Yasskin2011-07-151-0/+49
* Avoid turning a floating point division with a constant power of two into a d...Benjamin Kramer2011-03-301-4/+2
* Add APFloat::getExactInverse.Benjamin Kramer2011-03-301-0/+23
* Fix death tests in -Asserts builds.Jeffrey Yasskin2010-03-171-0/+2
* Teach APFloat how to create both QNaNs and SNaNs and with arbitrary-widthJohn McCall2010-02-281-0/+29
* Make APFloat's string-parsing routines a bit safer against very large exponents.John McCall2010-02-261-0/+7
* Make APInt::countLeadingZerosSlowCase() treat the contents of padding bitsJohn McCall2010-02-031-0/+2
* Implement support for converting to string at "natural precision", and fix someJohn McCall2009-12-241-1/+3
* Add accessors for the largest-magnitude, smallest-magnitude, andJohn McCall2009-12-241-0/+20