- e58d720 Unit Tests: Missed this error. MSVC and clang didn't complain. by Michael J. Spencer · 14 years ago
- 4c099b8 System: Add SwapByteOrder and update Support/MathExtras.h to use it. by Michael J. Spencer · 14 years ago
- af72684 Revert "System: Add SwapByteOrder and update Support/MathExtras.h to use it." by Michael J. Spencer · 14 years ago
- 12647eb Reduce dpendencies for SupportTests. by Michael J. Spencer · 14 years ago
- 5031e0d System: Add SwapByteOrder and update Support/MathExtras.h to use it. by Michael J. Spencer · 14 years ago
- 2e0affb static_cast to long, otherwise MSVC 2008 won't compile. by Francois Pichet · 14 years ago
- f2d7b7c Make ConstantRange::makeICmpRegion handle all the edge cases properly. This by Nick Lewycky · 14 years ago
- c576d3d Remove reference to nonexistent test in CMake makefile for unit tests by Douglas Gregor · 14 years ago
- 520163c Move ValueMapTest from ADT to VMCore so that ADT doesn't need to link in "core". by Dan Gohman · 14 years ago
- fab4c9e Add an all() method to BitVector, for testing whether all bits are set. by Dan Gohman · 14 years ago
- 066de85 Reverting "CMake: Don't include tools, unittets, or examples as by Oscar Fuentes · 14 years ago
- 4b794c9 CMake: Don't include tools, unittets, or examples as available targets by Michael J. Spencer · 14 years ago
- ddfce8f unittests: Support Windows. by Michael J. Spencer · 14 years ago
- ee6944f CMake: Build unittests. by Michael J. Spencer · 14 years ago
- 5754a45 Add better support for environment portion of triple. Original patch by by Duncan Sands · 14 years ago
- bc9c36b Attempt to unbreak the FreeBSD buildbot by XFAILing a unit test that seems to be by Jakob Stoklund Olesen · 14 years ago
- 32cda11 Add a new isSignWrappedSet() method to ConstantRange. by Nick Lewycky · 14 years ago
- a51d89c zap dead code. by Chris Lattner · 14 years ago
- 837bccd StringRef::compare_numeric also differed from StringRef::compare for characters > 127. by Benjamin Kramer · 14 years ago
- 0043e35 Do unsigned char comparisons in StringRef::compare_lower to be more consistent with compare in corner cases. by Benjamin Kramer · 14 years ago
- d400850 Silence 'unused' warning. by Bill Wendling · 14 years ago
- 462aaeb1 This patch enables "make unittests" on enable-shared/mingw. by Anton Korobeynikov · 14 years ago
- 335db22 Add a 'normalize' method to the Triple class, which takes a mucked up by Duncan Sands · 14 years ago
- 7f9ef4b Clean up ConstantRange a bit: by Nick Lewycky · 14 years ago
- 3850f5c Remove the ValueMap copy constructor. It's not used anywhere, by Duncan Sands · 14 years ago
- 9773e45 Add an inverse() method to ConstantRange. by Owen Anderson · 14 years ago
- 90c579d Reapply r110396, with fixes to appease the Linux buildbot gods. by Owen Anderson · 14 years ago
- 1f74590 Revert r110396 to fix buildbots. by Owen Anderson · 14 years ago
- 9ccaf53 Don't use PassInfo* as a type identifier for passes. Instead, use the address of the static by Owen Anderson · 14 years ago
- ab37f50 Make SCEVUnknown a CallbackVH, so that it can be notified directly by Dan Gohman · 14 years ago
- ee56c42 Prefix `next' iterator operation with `llvm::'. by Oscar Fuentes · 14 years ago
- bcc2393 Fix the ValueMap copy constructor. The issue is that the map keys are value by Duncan Sands · 14 years ago
- a8ebd2e Remove the temporary hack, now that the llvm-i686-linux buildbot has by Bob Wilson · 14 years ago
- 575be08 Fix the temporary hack. by Bob Wilson · 14 years ago
- 0e2b7de Temporary hack to ensure stale Analysis dir is cleaned up on llvm-i686-linux. by Daniel Dunbar · 14 years ago
- e6cbfa6 Speculatively revert r109705 since it seems to be causing some build bot angst. by Eric Christopher · 14 years ago
- c674320 Factor out some of the code for updating old SCEVUnknown values, and by Dan Gohman · 14 years ago
- ae7b8b2 missed a use of SizeRequired. by Chris Lattner · 14 years ago
- 456fdaf instead of migrating it to the MC instruction encoder, just by Chris Lattner · 14 years ago
- f06eb37 add dyn_cast_or_null tests, exclude invalid dyn_cast test by Gabor Greif · 14 years ago
- 46a3501 tidy up by Gabor Greif · 14 years ago
- d159467 add dyn_cast tests and beef up others a bit by Gabor Greif · 14 years ago
- 17aa92c Make NamedMDNode not be a subclass of Value, and simplify the interface by Dan Gohman · 14 years ago
- b3c90d9 tidy up by Gabor Greif · 14 years ago
- e895097 migrate essentially everything from under #ifdef DEBUG_CAST_OPERATORS into this file by Gabor Greif · 14 years ago
- 08993c0 extend to cast<> and cast_or_null<> tests by Gabor Greif · 14 years ago
- af8e2ef isa<> tests by Gabor Greif · 14 years ago
- ee57dae initial checkin for unittest to exercise Support/Casting.h by Gabor Greif · 14 years ago
- e332553 unit test to go along with r108610 by Chris Lattner · 14 years ago
- 48b17fa Switch from EXPECT_EQ({true,false, ...) to the more canonical by Chandler Carruth · 14 years ago
- 3732396 Use non-bool values for .count. by Bill Wendling · 14 years ago
- 73c6031 ADT: Add DAGDeltaAlgorithm, which is a DAG minimization algorithm built on top of the standard 'delta debugging' algorithm. by Daniel Dunbar · 14 years ago
- 2e3f44e Disable pthread support in googletest if llvm was configured without threads. by Benjamin Kramer · 14 years ago
- 8ef297e Turns out gtest still prefers the system <tr1/tuple> over it's own by Benjamin Kramer · 14 years ago
- 4839d87 Update Readme and Makefiles for the new gtest. by Benjamin Kramer · 14 years ago
- 160a3bf Add StringRef::compare_numeric and use it to sort TableGen register records. by Jakob Stoklund Olesen · 14 years ago
- f1fd228 Fix const ilist_node::get{Prev,Next}Node() to actually compile. Picky, picky. by Daniel Dunbar · 15 years ago
- aa81380 ADT: Add ilist_node::get{Prev,Next}Node, which return the adjacent node or null. by Daniel Dunbar · 15 years ago
- 3f5e915 Update BitVectorTest.cpp to stay in sync with SmallBitVectorTest.cpp, by Dan Gohman · 15 years ago
- 6340722 SmallBitVector: Rework find_first/find_next and tweak test to test them (at least on 64 bit platforms). by Benjamin Kramer · 15 years ago
- b252fbd Implement a read/write operator[] for SmallBitVector with a proxy class. by Benjamin Kramer · 15 years ago
- a07cd90 silence some unused-value warnings. by Chris Lattner · 15 years ago
- 2decb22 introduce a new CallGraphSCC class, and pass it around by Chris Lattner · 15 years ago
- f3a3b0f Update unittest for allocator laziness. by Benjamin Kramer · 15 years ago
- 796e64b update unit test for api change. by Chris Lattner · 15 years ago
- a7a33fd Fix SmallVector's insert to handle non-random-access iterators. by Dan Gohman · 15 years ago
- fe7bb05 another one by Gabor Greif · 15 years ago
- 5ffc72e Make this test more lenient; with SmallVector now using actually by Dan Gohman · 15 years ago
- f5bf7c5 feedback from Nick by Gabor Greif · 15 years ago
- b5f59f5 Fix death tests in -Asserts builds. by Jeffrey Yasskin · 15 years ago
- abf657f more BranchInst tests by Gabor Greif · 15 years ago
- d165e1a add BranchInst tests by Gabor Greif · 15 years ago
- 642c066 appease valgrind testers by Gabor Greif · 15 years ago
- 22385eb add single return tests by Gabor Greif · 15 years ago
- 138acfe fix PR6589 adjusted unittest by Gabor Greif · 15 years ago
- 5a7069a begin humbly with a repro of PR6589 by Gabor Greif · 15 years ago
- 06e59e7 Teach this test not to leak. Also, clean up all the cast<BinaryOperator> cruft. by Nick Lewycky · 15 years ago
- 2416115 Remove the last memory leak from the VMCore unit tests. by Jeffrey Yasskin · 15 years ago
- 9d0b3dd Remove a memory leak from MetadataTest. by Jeffrey Yasskin · 15 years ago
- 645a86f Remove a memory leak from VerifierTest. by Jeffrey Yasskin · 15 years ago
- f10e43e Consolidate GoogleTest make options and duplicate them to its own makefile. by Chandler Carruth · 15 years ago
- e5790a4 Stop leaking MDStrings. by Jeffrey Yasskin · 15 years ago
- 39c75f2 Fix PR6360. It's easy for a stub's address to escape to user code, so we can't by Jeffrey Yasskin · 15 years ago
- e57898c Fix PR5291, in which a SmallPtrSet iterator was held across an insertion into by Jeffrey Yasskin · 15 years ago
- 85f1968 Spelling fixes. by Dan Gohman · 15 years ago
- e12b738 Teach APFloat how to create both QNaNs and SNaNs and with arbitrary-width by John McCall · 15 years ago
- 8b3f330 Make APFloat's string-parsing routines a bit safer against very large exponents. by John McCall · 15 years ago
- c901719 Try r96559 for the third time. This time the shared library is only built if by Jeffrey Yasskin · 15 years ago
- 407fbdd Roll back r96959 again. by Jeffrey Yasskin · 15 years ago
- ea6c39d Roll r96559 forward again, adding libLLVM-2.7svn.so to LLVM. This links 3 of by Jeffrey Yasskin · 15 years ago
- 2155d45 Roll back the shared library, r96559. It broke two darwins and arm, mysteriously. by Jeffrey Yasskin · 15 years ago
- f6afae2 Add a shared library for LLVM, named libLLVM2.7svn.(so|dylib), and add an by Jeffrey Yasskin · 15 years ago
- d2a5c0d Add Regex::sub, for doing regular expression substitution with backreferences. by Daniel Dunbar · 15 years ago
- 6a7cb63 Teach the verifier to check the condition on a branch and ensure that it has by Nick Lewycky · 15 years ago
- d873535 Fix (harmless) memory leak found by memcheck. by Jeffrey Yasskin · 15 years ago
- 9233b15 Fix some of the memcheck errors found in the JIT unittests. by Jeffrey Yasskin · 15 years ago
- 40966a7 Make it possible to create multiple JIT instances at the same time, by removing by Jeffrey Yasskin · 15 years ago
- c9e31cc Silence GCC warnings. by Benjamin Kramer · 15 years ago
- e7962c9 Implement operators |=, &=, and ^= for SmallBitVector, and remove the by Dan Gohman · 15 years ago
- ce97b75 Disable unittests/ADT/BitVectorTest on PPC Darwin. by Dale Johannesen · 15 years ago