- e3796d3 APFloat: allow 64-bit of payload by JF Bastien · 7 years ago
- 6e3463c [Intrinsic] Add llvm.minimum and llvm.maximum instrinsic functions by Thomas Lively · 7 years ago
- 277cedd APFloat/x87: Fix string conversion for "unnormal" values (pr35860) by Pavel Labath · 7 years ago
- 643edab Fix APFloat from string conversion for Inf by Serguei Katkov · 8 years ago
- bfaa9ed Fix APFloat mod sign by Serguei Katkov · 8 years ago
- c6c4c8b Revert rL316156 due to failure on APFloatTest.fromToStringSpecials by Max Kazantsev · 8 years ago
- 90ee44d Fix APFloat from string conversion for Inf by Serguei Katkov · 8 years ago
- d8ff2f4 Untabify. by NAKAMURA Takumi · 8 years ago
- ef15f2c Untabify. by NAKAMURA Takumi · 8 years ago
- 6d97003 [APFloat] Fix IsInteger() for DoubleAPFloat. by Davide Italiano · 8 years ago
- 23efab2 [ADT] Fix another "oops" spotted by eddyb and reported in IRC. by Chandler Carruth · 8 years ago
- cf8b560 [ADT] Fix a test case to use a correct escape for a null byte followed by Chandler Carruth · 8 years ago
- c849a0c [AsmWriter/APFloat] FP constant printing: Avoid usage of locale dependent snprinf by Serguei Katkov · 8 years ago
- 2215b7d Fix 80-column violation in previous commit. by Stephen Canon · 8 years ago
- 872b505 Fix APFloat mod (committing for simonbyrne) by Stephen Canon · 8 years ago
- f337952 DAGCombiner: Allow negating ConstantFP after legalize by Matt Arsenault · 9 years ago
- 3796f1e [APFloat] Add PPCDoubleDouble multiplication by Tim Shen · 9 years ago
- 207a20d [APFloat] Switch from (PPCDoubleDoubleImpl, IEEEdouble) layout to (IEEEdouble, IEEEdouble) by Tim Shen · 9 years ago
- 81d263b [APFloatTest] Add tests for various operations by Tim Shen · 9 years ago
- 1254a59 [APFloatTest] Log when test fails. NFC by Tim Shen · 9 years ago
- dbb11ef Adapt to recent APFloat change by Stephan Bergmann · 9 years ago
- 20a600c Replace APFloatBase static fltSemantics data members with getter functions by Stephan Bergmann · 9 years ago
- 2229ea1 [APFloatTest] Use std::make_tuple to make GCC 4.8 happy by Tim Shen · 9 years ago
- 611d8de [APFloat] Implement PPCDoubleDouble add and subtract. by Tim Shen · 9 years ago
- c7524ad [APFloat] Make functions that produce APFloaat objects use correct semantics. by Tim Shen · 9 years ago
- f6071e1 [NFC] Header cleanup by Mehdi Amini · 9 years ago
- b883372 APFloat: Fix signalling nans for scalbn by Matt Arsenault · 9 years ago
- 7c9226f APFloat: Add frexp by Matt Arsenault · 9 years ago
- 499f78c APFloat: Fix ilogb for denormals by Matt Arsenault · 9 years ago
- 2ef9469 APFloat: Fix scalbn handling of denormals by Matt Arsenault · 9 years ago
- 0136ee9 Add isInteger() to APFloat. by Stephen Canon · 10 years ago
- 0df66b8 Drop the hacks used for partial C99 math libraries. by Benjamin Kramer · 10 years ago
- a46dd58 [APFloat][ADT] Fix sign handling logic for FMA results that truncate to zero. by Lang Hames · 11 years ago
- 58c62e1 [ADT] Fix PR20728 - Incorrect APFloat::fusedMultiplyAdd results for x86_fp80. by Lang Hames · 11 years ago
- 082e667 [ADT] Add an (ADL-friendly) abs free function for APFloat that returns by Chandler Carruth · 11 years ago
- c08f0e3 Add minnum / maxnum to APFloat by Matt Arsenault · 11 years ago
- f4ec669 [ADT] Replace the logb implementation with the simpler and much closer by Chandler Carruth · 11 years ago
- cb84b21 [ADT] Add the scalbn function for APFloat. by Chandler Carruth · 11 years ago
- 9ea4dd2 [ADT] Implement the 'logb' functionality for APFloat. This is necessary by Chandler Carruth · 11 years ago
- 0ffdb31 [ADT] Add basic operator overloads for arithmetic to APFloat to make by Chandler Carruth · 11 years ago
- b177041 [C++11] Use 'nullptr'. by Craig Topper · 11 years ago
- bef256f APFloat: x - NaN needs to flip the signbit of NaN when x is a number. by Stephen Canon · 11 years ago
- 1053a0b Change default # of digits for APFloat::toString by Eli Friedman · 12 years ago
- 9006170 Revert r189442 "Change default # of digits for APFloat::toString" by Ted Kremenek · 12 years ago
- 631bce5 Change default # of digits for APFloat::toString by Eli Friedman · 12 years ago
- ca4d2e6 [APFloat] Make all arithmetic operations with NaN produce positive NaNs. by Michael Gottesman · 12 years ago
- 763c066 Handle '.' correctly in hex float literal parsing. by Eli Friedman · 12 years ago
- b577703 [APFloat] Ensure that we can properly parse strings that do not have null terminators. by Michael Gottesman · 12 years ago
- fb76ffd [APFloat] Added unittest for APFloat.divide that checks special cases, result categories, and result statuses. by Michael Gottesman · 12 years ago
- bb77593 Removed two logging printf statements from the APFloat tests... = /. by Michael Gottesman · 12 years ago
- 2eda897 [APFloat] Added unittest for APFloat.multiply that checks special cases, result categories, and result status. by Michael Gottesman · 12 years ago
- d7d88d9 [APFloat] Added unittest for APFloat.subtract that checks special cases, result categories, and result status. by Michael Gottesman · 12 years ago
- a8f9364 [APFloat] Removed debugging cruft that snuck in. by Michael Gottesman · 12 years ago
- 567a112 [APFloat] Removed trailing whitespace from unittests. by Michael Gottesman · 12 years ago
- 683069f [APFloat] Added a large unittest for APFloat.add that checks that special values are computed correctly. by Michael Gottesman · 12 years ago
- a1694e5 [APFloat] Rename isIEEENormal => isNormal and remove old isNormal method. by Michael Gottesman · 12 years ago
- 3781fbc [APFloat] Fix typo in test so we actually test if we handle denormals. by Michael Gottesman · 12 years ago
- 4f71c1b [APFloat] Changed APFloat::isNormal => APFloat::isFiniteNonZero for all tests in unittests. by Michael Gottesman · 12 years ago
- 7032c88 [APFloat] Added isFiniteNonZero predicate. by Michael Gottesman · 12 years ago
- b30718a IEEE-754R 5.7.2 General Operations is* operations (except for isCanonical). by Michael Gottesman · 12 years ago
- 44dbb74 Try to avoid "integer literal too big" warnings from older GCCs. by Benjamin Kramer · 12 years ago
- 504e2da [APFloat] Added a unittest for APFloat::getZero. by Michael Gottesman · 12 years ago
- 964722c Implement IEEE-754R 2008 nextUp/nextDown functions in the guise of the function APFloat::next(bool nextDown). by Michael Gottesman · 12 years ago
- 999c693 Added a unittest for APFloat::getSmallestNormalized. by Michael Gottesman · 12 years ago
- 7d13d52 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
- 3e8d356 Add a unittest for APFloat::getSmallest. by Michael Gottesman · 12 years ago
- 4b6b53b Fix a bug that APFloat::fusedMultiplyAdd() mistakenly evaluate "14.5f * -14.5f + 225.0f" to 225.0f. by Shuxin Yang · 12 years ago
- bd7561e APFloat: Make sure that we get a well-formed x87 NaN when converting from a smaller type. by Benjamin Kramer · 13 years ago
- 7aa1c32 Implement APFloat::isDenormal() by Shuxin Yang · 13 years ago
- 5a88dda Sort the #include lines for unittest/... by Chandler Carruth · 13 years ago
- 6b370e6 Drop the limitation to IEEE floating point types from the fdiv of pow2 -> fmul transform. by Benjamin Kramer · 13 years ago
- 69c9c8c Implement arithmetic on APFloat with PPCDoubleDouble semantics by by Ulrich Weigand · 13 years ago
- 3e7735f APFloat::roundToIntegral: Special values don't keep the exponent value up to date, don't rely on it. by Benjamin Kramer · 13 years ago
- c82cc58 Fix another roundToIntegral bug where very large values could become infinity. Problem and solution identified by Steve Canon. by Owen Anderson · 13 years ago
- f7a5dfc 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
- 4455142 Fix APFloat::convert so that it handles narrowing conversions correctly; it by Eli Friedman · 14 years ago
- a3a1635 Attempt to fix MSVC build. by Eli Friedman · 14 years ago
- 7247a5f 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
- 9d74909 Fix a test that wasn't testing the right thing. by Matt Beaumont-Gay · 14 years ago
- 3d42bfb Add an APFloat::convertToInt(APSInt) function that automatically manages the by Jeffrey Yasskin · 14 years ago
- 8398512 Avoid turning a floating point division with a constant power of two into a denormal multiplication. by Benjamin Kramer · 14 years ago
- 2746000 Add APFloat::getExactInverse. by Benjamin Kramer · 14 years ago
- b5f59f5 Fix death tests in -Asserts builds. by Jeffrey Yasskin · 15 years ago
- e12b738 Teach APFloat how to create both QNaNs and SNaNs and with arbitrary-width by John McCall · 16 years ago
- 8b3f330 Make APFloat's string-parsing routines a bit safer against very large exponents. by John McCall · 16 years ago
- 281d051 Make APInt::countLeadingZerosSlowCase() treat the contents of padding bits by John McCall · 16 years ago
- 6a09aff Implement support for converting to string at "natural precision", and fix some by John McCall · 16 years ago
- 00e65de Add accessors for the largest-magnitude, smallest-magnitude, and by John McCall · 16 years ago
- 83fecfa Add test for PR4873, which works for me. by Daniel Dunbar · 16 years ago
- c78b33b Add support for including '+' in APFloat strings, more asserts, by Erick Tryzelaar · 16 years ago
- cdd93d8 Fix two APFloat bugs in converting hexadecimal constants. by Daniel Dunbar · 16 years ago
- 2ad40a3 Wrap unit test death tests in GTEST_HAS_DEATH_TEST by Erick Tryzelaar · 16 years ago
- 33d7dd6 Change APFloatTest from using ASSERTs to EXPECTs by Erick Tryzelaar · 16 years ago
- a15d890 Modify APFloat to take a StringRef instead of a c string. by Erick Tryzelaar · 16 years ago