aboutsummaryrefslogtreecommitdiffstats
path: root/unittests/Support/ConstantRangeTest.cpp
Commit message (Expand)AuthorAgeFilesLines
* Simplify, now that gtest supports raw_ostream directly.Daniel Dunbar2009-09-061-1/+0
* Now that googletest can print ConstantRange, use EXPECT_EQ when testing forNick Lewycky2009-09-051-149/+149
* Teach googletest to use raw_ostream instead of just std::ostream.Jeffrey Yasskin2009-09-051-7/+0
* split raw_os_ostream out to its own header and implementation file. ThisChris Lattner2009-08-241-1/+1
* Unbreak unit tests.Daniel Dunbar2009-08-241-0/+7
* convert all the constant range EXPECT_EQ tests to use EXPECT_TRUE since Chris Lattner2009-08-231-128/+129
* cast signed APInt constructor params to uint64_t to suppress signedness warningRyan Flynn2009-07-221-5/+5
* Fix ConstantRange::unionWith. Also make it work a little hard in some cases toNick Lewycky2009-07-191-0/+11
* Replace intersectWith with maximalIntersectWith. The latter guarantees thatNick Lewycky2009-07-181-15/+6
* Fix an error in ConstantRange::getSignedMax on wrapped ranges. Thanks onceNick Lewycky2009-07-131-0/+4
* 'i8 full-range' sign extended to i16 should equal [-128, 128) not [-128, 127).Nick Lewycky2009-07-131-1/+1
* Multiply was very wrong for wrapped ranges. This supplies a half-fix that willNick Lewycky2009-07-131-0/+5
* Fix a bug summing two full sets. The overflow checking doesn't handle sets asNick Lewycky2009-07-131-0/+1
* Implement udiv for ConstantRanges.Nick Lewycky2009-07-121-13/+9
* This is not overly conservative.Nick Lewycky2009-07-121-1/+0
* Implement ConstantRange::multiply based on the code in LoopVR.Nick Lewycky2009-07-121-10/+6
* Fix handling of max and full set.Nick Lewycky2009-07-111-7/+8
* Break the world's largest unit test down a few logical lines. No semanticNick Lewycky2009-07-111-23/+65
* Revert the part of 75177 that split ConstantRange into two classes, andDan Gohman2009-07-091-298/+21
* Add a ConstantSignedRange class, which does for signed integersDan Gohman2009-07-091-0/+582