Drop the hacks used for partial C99 math libraries.
[oota-llvm.git] / unittests / ADT / APFloatTest.cpp
2015-03-09 Benjamin KramerDrop the hacks used for partial C99 math libraries.
2015-01-04 Lang Hames[APFloat][ADT] Fix sign handling logic for FMA results...
2014-11-19 Lang Hames[ADT] Fix PR20728 - Incorrect APFloat::fusedMultiplyAdd...
2014-10-10 Chandler Carruth[ADT] Add an (ADL-friendly) abs free function for APFlo...
2014-10-10 Matt ArsenaultAdd minnum / maxnum to APFloat
2014-10-10 Chandler Carruth[ADT] Replace the logb implementation with the simpler...
2014-10-10 Chandler Carruth[ADT] Add the scalbn function for APFloat.
2014-10-10 Chandler Carruth[ADT] Implement the 'logb' functionality for APFloat...
2014-10-09 Chandler Carruth[ADT] Add basic operator overloads for arithmetic to...
2014-06-08 Craig Topper[C++11] Use 'nullptr'.
2014-06-08 Stephen CanonAPFloat: x - NaN needs to flip the signbit of NaN when...
2013-08-29 Eli FriedmanChange default # of digits for APFloat::toString
2013-08-28 Ted KremenekRevert r189442 "Change default # of digits for APFloat...
2013-08-28 Eli FriedmanChange default # of digits for APFloat::toString
2013-07-27 Michael Gottesman[APFloat] Make all arithmetic operations with NaN produ...
2013-07-17 Eli FriedmanHandle '.' correctly in hex float literal parsing.
2013-07-01 Michael Gottesman[APFloat] Ensure that we can properly parse strings...
2013-06-27 Michael Gottesman[APFloat] Added unittest for APFloat.divide that checks...
2013-06-27 Michael GottesmanRemoved two logging printf statements from the APFloat...
2013-06-26 Michael Gottesman[APFloat] Added unittest for APFloat.multiply that...
2013-06-26 Michael Gottesman[APFloat] Added unittest for APFloat.subtract that...
2013-06-26 Michael Gottesman[APFloat] Removed debugging cruft that snuck in.
2013-06-24 Michael Gottesman[APFloat] Removed trailing whitespace from unittests.
2013-06-24 Michael Gottesman[APFloat] Added a large unittest for APFloat.add that...
2013-06-20 Michael Gottesman[APFloat] Rename isIEEENormal => isNormal and remove...
2013-06-20 Michael Gottesman[APFloat] Fix typo in test so we actually test if we...
2013-06-19 Michael Gottesman[APFloat] Changed APFloat::isNormal => APFloat::isFinit...
2013-06-19 Michael Gottesman[APFloat] Added isFiniteNonZero predicate.
2013-06-04 Michael GottesmanIEEE-754R 5.7.2 General Operations is* operations ...
2013-06-01 Benjamin KramerTry to avoid "integer literal too big" warnings from...
2013-05-31 Michael Gottesman[APFloat] Added a unittest for APFloat::getZero.
2013-05-30 Michael GottesmanImplement IEEE-754R 2008 nextUp/nextDown functions...
2013-05-30 Michael GottesmanAdded a unittest for APFloat::getSmallestNormalized.
2013-05-30 Michael GottesmanAdded code to the unittest for APFloat::getSmallest...
2013-05-29 Michael GottesmanAdd a unittest for APFloat::getSmallest.
2013-05-13 Shuxin YangFix a bug that APFloat::fusedMultiplyAdd() mistakenly...
2013-01-25 Benjamin KramerAPFloat: Make sure that we get a well-formed x87 NaN...
2013-01-07 Shuxin YangImplement APFloat::isDenormal()
2012-12-04 Chandler CarruthSort the #include lines for unittest/...
2012-11-08 Benjamin KramerDrop the limitation to IEEE floating point types from...
2012-10-29 Ulrich WeigandImplement arithmetic on APFloat with PPCDoubleDouble...
2012-09-26 Benjamin KramerAPFloat::roundToIntegral: Special values don't keep...
2012-08-15 Owen AndersonFix another roundToIntegral bug where very large values...
2012-08-15 Owen AndersonFix a problem with APFloat::roundToIntegral where it...
2011-11-26 Eli FriedmanFix APFloat::convert so that it handles narrowing conve...
2011-10-12 Eli FriedmanAttempt to fix MSVC build.
2011-10-12 Eli FriedmanFix APFloat::getLargest so that it actually returns...
2011-08-29 Matt Beaumont-GayFix a test that wasn't testing the right thing.
2011-07-15 Jeffrey YasskinAdd an APFloat::convertToInt(APSInt) function that...
2011-03-30 Benjamin KramerAvoid turning a floating point division with a constant...
2011-03-30 Benjamin KramerAdd APFloat::getExactInverse.
2010-03-17 Jeffrey YasskinFix death tests in -Asserts builds.
2010-02-28 John McCallTeach APFloat how to create both QNaNs and SNaNs and...
2010-02-26 John McCallMake APFloat's string-parsing routines a bit safer...
2010-02-03 John McCallMake APInt::countLeadingZerosSlowCase() treat the conte...
2009-12-24 John McCallImplement support for converting to string at "natural...
2009-12-24 John McCallAdd accessors for the largest-magnitude, smallest-magni...
2009-09-03 Daniel DunbarAdd test for PR4873, which works for me.
2009-08-20 Erick TryzelaarAdd support for including '+' in APFloat strings, more...
2009-08-20 Daniel DunbarFix two APFloat bugs in converting hexadecimal constants.
2009-08-17 Erick TryzelaarWrap unit test death tests in GTEST_HAS_DEATH_TEST
2009-08-17 Erick TryzelaarChange APFloatTest from using ASSERTs to EXPECTs
2009-08-16 Erick TryzelaarModify APFloat to take a StringRef instead of a c string.