aboutsummaryrefslogtreecommitdiffstats
path: root/unittests/ADT
Commit message (Expand)AuthorAgeFilesLines
* Implement APFloat::isDenormal()Shuxin Yang2013-01-071-0/+52
* Add an iplist::clearAndLeakNodesUnsafely() function.Jakob Stoklund Olesen2013-01-041-0/+33
* Sort a few more #include lines in tools/... unittests/... and utils/...Chandler Carruth2013-01-021-1/+1
* Add an assertion for a likely ilist::splice() contract violation.Jakob Stoklund Olesen2012-12-181-0/+21
* Sort the #include lines for unittest/...Chandler Carruth2012-12-049-19/+19
* Switch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_REFERENCES.Chandler Carruth2012-11-301-17/+17
* 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
* Fixed bug in SmallDenseMap where it wouldn't leave enough space for an empty ...Pete Cooper2012-10-231-0/+33
* Fix a bug in the set(I,E)/reset(I,E) methods that I recently added. The boun...Owen Anderson2012-10-161-0/+10
* Add range-based set()/reset() to BitVector. These allow fast setting/resetti...Owen Anderson2012-10-151-0/+42
* Update CMake build.Benjamin Kramer2012-10-141-0/+1
* Fix a typo that made ImmutableMap::getMaxElement() useless.Benjamin Kramer2012-10-141-0/+50
* Add powerpc-ibm-aix to Triple. Patch by Kai.Duncan Sands2012-10-121-0/+12
* Use unsigned long long instead of uin64_t for OS where that matters.Nick Kledzik2012-10-031-1/+1
* Don't call getAsUnsignedInteger directly, it fails to compile if uint64_t is ...Benjamin Kramer2012-10-031-1/+5
* Add getAsUnsignedInteger test case that checks that known bad values are reje...Nick Kledzik2012-10-031-0/+19
* APFloat::roundToIntegral: Special values don't keep the exponent value up to ...Benjamin Kramer2012-09-261-0/+17
* Fix includes of llvm files that used angle brackets.Craig Topper2012-09-151-1/+1
* ADTTests: [CMake] Exclude DenseMapTest.cpp and SmallVectorTest.cpp on MSVC9 d...NAKAMURA Takumi2012-08-301-1/+14
* 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
* Add range erase, element insert, and range insert methods toChandler Carruth2012-08-011-0/+91
* Implement copy and move assignment for TinyPtrVector. These try toChandler Carruth2012-07-311-0/+166
* Bring TinyPtrVector under test. Somehow we never picked up unit testsChandler Carruth2012-07-312-0/+192
* Move the SmallVector unit tests to be type-parameterized so that we canChandler Carruth2012-07-301-149/+176
* Completely refactor the structuring of unittest CMake files to match theChandler Carruth2012-06-211-0/+32
* Fix PR13148, an inf-loop in StringMap.Chandler Carruth2012-06-191-0/+22
* Remove some superfluous SCOPED_TRACEs from this unit test.Chandler Carruth2012-06-191-6/+0
* Remove SmallMap unittests, unbreaking the build.Benjamin Kramer2012-06-171-162/+0
* Bring the return value of SmallVector::insert in line with std::vector::insert.Benjamin Kramer2012-06-171-4/+30
* SmallVector: return a valid iterator for the rare case of inserting an empty ...Benjamin Kramer2012-06-171-0/+7
* Add a unit test for 'swap', and fix a pile of bugs inChandler Carruth2012-06-171-0/+36
* Add tests for *DenesMap for both key and value types' construction andChandler Carruth2012-06-171-1/+46
* Introduce a SmallDenseMap container that re-uses the existing DenseMapChandler Carruth2012-06-171-27/+35
* Merge the SmallBitVector and BitVector unit tests with gtest's typed test mag...Benjamin Kramer2012-06-162-212/+25
* Work around a bug with MSVC 10 where it fails to recognize a valid useChandler Carruth2012-06-161-0/+9
* Type parameterize the DenseMap unit tests.Chandler Carruth2012-06-161-87/+102
* Fix typos found by http://github.com/lyda/misspell-checkBenjamin Kramer2012-06-021-1/+1
* Remove the PTX back-end and all of its artifacts (triple, etc.)Justin Holewinski2012-05-241-6/+6
* fix the quotient returned by sdivrem() for the case when LHS is negative and ...Nuno Lopes2012-05-221-0/+28
* Remove warning about testing unsigned int with int.Bill Wendling2012-05-151-1/+1
* Fixed one small stupid, but critical bug.Stepan Dyatkovskiy2012-05-151-0/+15
* Remove the expensive BitVector::operator~().Jakob Stoklund Olesen2012-05-141-3/+4
* Add BitVector::anyCommon().Jakob Stoklund Olesen2012-05-141-1/+29
* [Support/StringRef] Add find_last_not_of and {r,l,}trim.Michael J. Spencer2012-05-111-0/+28
* Add unittests for Triple::getMacOSXVersion and Triple::getiOSVersion.Chad Rosier2012-05-091-0/+65
* SmallVector: Don't rely on having an assignment operator around in push_back ...Benjamin Kramer2012-04-291-0/+13
* Fixed SmallMap test. The order of items is undefined in DenseMap. So being ch...Stepan Dyatkovskiy2012-04-261-10/+24
* Reapply the SmallMap patch with a fix.Benjamin Kramer2012-04-251-0/+133