| Commit message (Expand) | Author | Age | Files | Lines |
* | Correct for recent assert change. | Bill Wendling | 2009-08-21 | 1 | -1/+1 |
* | Fix bug with APInt::getBitsNeeded with for base 10 numbers 0-9. | Erick Tryzelaar | 2009-08-21 | 1 | -0/+82 |
* | Allow '+' to appear in APInt strings, and add more unit tests. | Erick Tryzelaar | 2009-08-21 | 1 | -8/+72 |
* | Add support for including '+' in APFloat strings, more asserts, | Erick Tryzelaar | 2009-08-20 | 1 | -51/+450 |
* | Fix two APFloat bugs in converting hexadecimal constants. | Daniel Dunbar | 2009-08-20 | 1 | -0/+2 |
* | Remove SmallString::append_*int* unit tests. | Benjamin Kramer | 2009-08-19 | 1 | -16/+0 |
* | Add SmallVector::{capacity,set_size}. | Daniel Dunbar | 2009-08-19 | 1 | -0/+18 |
* | Improve Triple to recognize the OS in i386-mingw32. | Daniel Dunbar | 2009-08-18 | 1 | -0/+12 |
* | Fix pasto in StringRef::count(char) | Daniel Dunbar | 2009-08-18 | 1 | -0/+1 |
* | Add StringRef::count({char,StringRef}) | Daniel Dunbar | 2009-08-18 | 1 | -0/+7 |
* | Wrap unit test death tests in GTEST_HAS_DEATH_TEST | Erick Tryzelaar | 2009-08-17 | 2 | -5/+9 |
* | Change APFloatTest from using ASSERTs to EXPECTs | Erick Tryzelaar | 2009-08-17 | 1 | -67/+67 |
* | Modify APFloat to take a StringRef instead of a c string. | Erick Tryzelaar | 2009-08-16 | 1 | -0/+106 |
* | Add failure tests to APInt unit test. | Erick Tryzelaar | 2009-08-16 | 1 | -0/+11 |
* | Convert APint::{fromString,APInt,getBitsNeeded} to use StringRef. | Daniel Dunbar | 2009-08-13 | 1 | -6/+6 |
* | StringRef: Add find(char) and find(StringRef). | Daniel Dunbar | 2009-08-11 | 1 | -0/+7 |
* | Twine: Use raw_ostream::write_hex, remove unused itohexstr method. | Daniel Dunbar | 2009-07-30 | 1 | -2/+1 |
* | Twine: Provide [u]int{32,64} conversions via implicit constructors instead of | Daniel Dunbar | 2009-07-30 | 1 | -6/+7 |
* | fix unittest on platforms with unsigned chars (e.g. linux-ppc) | Benjamin Kramer | 2009-07-29 | 1 | -1/+1 |
* | Twines: Support numeric conversion directly (uitostr, etc). | Daniel Dunbar | 2009-07-29 | 1 | -0/+12 |
* | Update Triple to use StringRef/Twine based APIs. | Daniel Dunbar | 2009-07-26 | 1 | -36/+36 |
* | Add StringRef::{slice, split}, two convenient string operations which are simple | Daniel Dunbar | 2009-07-26 | 1 | -0/+15 |
* | Add a missing ilist_node.h #include to SparseBitVector, and add a very short | Jeffrey Yasskin | 2009-07-25 | 1 | -0/+36 |
* | Add Twine ADT. | Daniel Dunbar | 2009-07-24 | 1 | -0/+63 |
* | Convert StringMap to using StringRef for its APIs. | Daniel Dunbar | 2009-07-23 | 1 | -10/+13 |
* | Support writing a StringRef to a raw_ostream directly. | Daniel Dunbar | 2009-07-22 | 1 | -0/+6 |
* | Add StringRef::{substr, startswith}. | Daniel Dunbar | 2009-07-21 | 1 | -0/+12 |
* | Add StringRef class, with fixes. | Daniel Dunbar | 2009-07-21 | 1 | -0/+59 |
* | unbreak unit-tests on gcc-4.4. | Torok Edwin | 2009-07-21 | 1 | -0/+1 |
* | Add SmallString unit test. | Daniel Dunbar | 2009-07-16 | 1 | -0/+64 |
* | Clarify a FIXME. | Daniel Dunbar | 2009-07-12 | 1 | -4/+5 |
* | Reapply 74494, this time removing the conflicting definition of operator<< | Dan Gohman | 2009-06-30 | 1 | -13/+0 |
* | Revert my intentional breakage. | Daniel Dunbar | 2009-06-30 | 1 | -2/+0 |
* | Intentionally break a unittest to test my buildbot gtest command. | Daniel Dunbar | 2009-06-30 | 1 | -0/+2 |
* | Reversed order of args in EXPECT_EQ() macros to be in the correct order: | Misha Brukman | 2009-06-09 | 1 | -70/+70 |
* | Prevent looping when DenseSet is abused. | Stuart Hastings | 2009-05-01 | 1 | -0/+30 |
* | Fix PR4040: APInt's string constructor is too strict | Chris Lattner | 2009-04-25 | 1 | -0/+9 |
* | Use the testcase from PR2791. | Owen Anderson | 2009-04-23 | 1 | -3/+3 |
* | * Fixed calls to APInt ctor to work for negative values on Darwin/x86 | Misha Brukman | 2009-04-08 | 1 | -6/+6 |
* | Add llvm::Triple class for abstracting access to target triples. | Daniel Dunbar | 2009-04-01 | 1 | -0/+137 |
* | Converted a1.ll to unittests. | Misha Brukman | 2009-03-24 | 1 | -4/+83 |
* | Renamed unittest files to have a consistent {Tt}est suffix. | Misha Brukman | 2009-03-19 | 1 | -0/+0 |
* | Fix comment. | Bill Wendling | 2009-02-09 | 1 | -1/+1 |
* | APInt's countLeadingOnes() was broken for negative i128 values, | Torok Edwin | 2009-01-27 | 1 | -2/+77 |
* | Port this test from dejagnu to unit testing. | Nick Lewycky | 2009-01-19 | 1 | -0/+25 |
* | Fix naming of file. | Bill Wendling | 2009-01-11 | 1 | -1/+1 |
* | Adding unittests for SmallVector. Test by Talin. | Bill Wendling | 2009-01-10 | 1 | -0/+383 |
* | Some generic clean-ups. Also make the StringMapEntryInitializer specializatio... | Bill Wendling | 2009-01-08 | 1 | -45/+44 |
* | * Don't explicitly cast "0" to "void*". This doesn't work well with specialized | Bill Wendling | 2009-01-08 | 1 | -3/+17 |
* | 80-column violation fix. | Bill Wendling | 2009-01-08 | 1 | -1/+1 |