- 104e992 Handle gcc-compatible compilers (such as clang) the same way we handle gcc. by Oscar Fuentes · 14 years ago
- 6cf081c Remove bounded StringRef::compare() since nothing but Clang SA was using it and it is just as easy to use StringRef::substr() preceding StringRef::compare() to achieve the same thing. by Lenny Maiorani · 14 years ago
- ec9186b PR9214: Convert Metadata API to use ArrayRef. by Jay Foad · 14 years ago
- 437ef0c Implements StringRef::compare with bounds. It is behaves similarly to strncmp(). Unit tests also included. by Lenny Maiorani · 14 years ago
- 562b84b Don't include Operator.h from InstrTypes.h. by Jay Foad · 14 years ago
- 6079465 While testing dragonegg I noticed that isCastable and getCastOpcode by Duncan Sands · 14 years ago
- f202c43 Strip trailing whitespace. by Duncan Sands · 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
- 3ecfc86 Remove PHINode::reserveOperandSpace(). Instead, add a parameter to by Jay Foad · 14 years ago
- d8b4fb4 (Almost) always call reserveOperandSpace() on newly created PHINodes. by Jay Foad · 14 years ago
- d9103df Add an argument to APInt's magic udiv calculation to specify the number of bits that are known zero in the divided number. by Benjamin Kramer · 14 years ago
- 9bf9aa5 Fixes warnings emitted by Visual Studio 2010 compiler. by Oscar Fuentes · 14 years ago
- b4098ba Simplify RecursivelyDeleteDeadPHINode. The only functionality change by Duncan Sands · 14 years ago
- 8d7285d The signed version of our "magic number" computation for the integer approximation by Cameron Zwarich · 14 years ago
- 0b85d07 Put targets on folders, if the IDE supports the feature. by Oscar Fuentes · 14 years ago
- eff5e69 Make RecursivelyDeleteDeadPHINode delete a phi node that has no users and add a by Nick Lewycky · 14 years ago
- 1a4021a Teach RecursivelyDeleteDeadPHINodes to handle multiple self-references. Patch by Nick Lewycky · 14 years ago
- 63cc3a8 Adds llvm::sys::path::is_separator() to test whether a char is a path separator by Zhanyong Wan · 14 years ago
- 5e342ec build: Add MAKEFILE_UNITTEST_NO_INCLUDE_COMMON build variable, to be leveraged by Daniel Dunbar · 14 years ago
- ee64684 Part of this test is invariant inside the inner loop - move it outside the loop. by Duncan Sands · 14 years ago
- ae200c6 Remove NoVendor and NoOS, added in commit 123990, from Triple. While it by Duncan Sands · 14 years ago
- b3371cd by Chris Lattner · 14 years ago
- 859f818 Clang was not parsing target triples involving EABI and was generating wrong IR (wrong PCS) and passing the wrong information down llc via the target-triple printed in IR. I've fixed this by adding the parsing of EABI into LLVM's Triple class and using it to choose the correct PCS in Clang's Tools. A Clang patch is on its way to use this infrastructure. by Renato Golin · 14 years ago
- 248f9f2 Unittests/Support/Path: Tweak test. by Michael J. Spencer · 14 years ago
- ba7c38c Allow unnamed_addr on declarations. by Rafael Espindola · 14 years ago
- 3bf2279 Disable RTTI when building unit tests. This avoids errors at link time. by Oscar Fuentes · 14 years ago
- d72479c Reject uses of unnamed_addr in declarations. by Rafael Espindola · 14 years ago
- bea4626 First step in fixing PR8927: by Rafael Espindola · 14 years ago
- 43eaade Remove the "ugly" method BranchInst::setUnconditionalDest(). by Jay Foad · 14 years ago
- 238589e UnitTests/Path: Add magical tests. This will also test identify_magic. by Michael J. Spencer · 14 years ago
- f9fd078 UnitTests/Path: More ASSERT_NO_ERROR cleanup. by Michael J. Spencer · 14 years ago
- f94f732 UnitTests/Path: Fix typo, add error number, and enable the directory cleanup code. by Michael J. Spencer · 14 years ago
- 2558516 UnitTests/PathV2: Setup a test fixture to make tracking created file system by Michael J. Spencer · 14 years ago
- da7c1ca Support/PathV2: Implement directory iteration on POSIX. by Michael J. Spencer · 14 years ago
- ba64b97 UnitTests/Path: Produce useful diagnostics on error. by Michael J. Spencer · 14 years ago
- e562dba fix PR8867: a crash handling fp128. Thanks to Nick for the testcase. by Chris Lattner · 14 years ago
- 8e68c38 Change all self assignments X=X to (void)X, so that we can turn on a by Jeffrey Yasskin · 14 years ago
- 2a6899c Add ADT/IntEqClasses.h as a light-weight implementation of EquivalenceClasses.h. by Jakob Stoklund Olesen · 14 years ago
- d715e07 Add more checks to IntervalMapOverlaps::advance() to ensure that advanceTo sees by Jakob Stoklund Olesen · 14 years ago
- 5049ee5 It is allowed to call IntervalMap::const_iterator::advanceTo() with a key that by Jakob Stoklund Olesen · 14 years ago
- 4aec85a Fix crash when IntervalMapOverlaps::advanceTo moves past the last overlap. by Jakob Stoklund Olesen · 14 years ago
- 90675c8 Complete tests for IntervalMapOverlaps. by Jakob Stoklund Olesen · 14 years ago
- 460ee0f Add basic test exposing many bugs. by Jakob Stoklund Olesen · 14 years ago
- 5029159 Support/PathV2: Change most functions in the path namespace to return their work by Michael J. Spencer · 14 years ago
- 729b294 CMake: Fix warning in gtest header used by unit tests. by Frits van Bommel · 14 years ago
- 40f8f62 PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and by Jay Foad · 14 years ago
- b3d37e3 unittests/CMakeLists.txt: Tweak unittests' layout to be identical to GNU build. by NAKAMURA Takumi · 14 years ago
- 936671b Support/PathV2: Remove the error_code return type from all functions in the path by Michael J. Spencer · 14 years ago
- ee271d8 Support/PathV2: Move make_absolute from path to fs. by Michael J. Spencer · 14 years ago
- 753cbbb Support/FileSystem: Add directory_iterator implementation. by Michael J. Spencer · 14 years ago
- 9ad8221 Unittests/Support/PathV2: Add FileSystem tests. by Michael J. Spencer · 14 years ago
- 7a26aca Add IntervalMap::iterator::set{Start,Stop,Value} methods that allow limited by Jakob Stoklund Olesen · 14 years ago
- 106aa73 Support/FileSystem: Add remove implementation. by Michael J. Spencer · 14 years ago
- 6d6d16a unittests/Support/PathV2: remove(3) requires a terminated string. by Benjamin Kramer · 14 years ago
- 371716c Unittests/Support/PathV2: Cleanup and remove output. by Michael J. Spencer · 14 years ago
- 12a4cf2 unittests/Support/PathV2: Comment out test because some systems are saying that by Michael J. Spencer · 14 years ago
- 3cb84ef Support/FileSystem: Add unique_file and exists implementations. by Michael J. Spencer · 14 years ago
- 506e579 Make valgrind happy. by Michael J. Spencer · 14 years ago
- 7dc7ac3 Support/ADT/Twine: Add toNullTerminatedStringRef. by Michael J. Spencer · 14 years ago
- eb21e3c unittests/Support/PathV2: Fix -pedantic warning. by Michael J. Spencer · 14 years ago
- 7a874dd PR5207: Rename overloaded APInt methods set(), clear(), flip() to by Jay Foad · 14 years ago
- ce2b68f Support/PathV2: Add is_{absolute,relative} implementation. by Michael J. Spencer · 14 years ago
- ae18008 Support/PathV2: Add has_{root_path,root_name,root_directory,parent_path,filename,stem,extension} implementation. by Michael J. Spencer · 14 years ago
- 1d38962 unittests/Support/PathV2: Make tests much shorter; although harder to understand. by Michael J. Spencer · 14 years ago
- 5265f22 Support/PathV2: Add extension implementation. by Michael J. Spencer · 14 years ago
- 34ab1f6 Support/PathV2: Add stem implementation. by Michael J. Spencer · 14 years ago
- a979355 Support/PathV2: Add filename implementation. by Michael J. Spencer · 14 years ago
- 722d5ad Support/PathV2: Add native implementation. by Michael J. Spencer · 14 years ago
- 52ed867 Support/PathV2: Add replace_extension implementation. by Michael J. Spencer · 14 years ago
- dbfb56b Support/PathV2: Add remove_filename implementation. by Michael J. Spencer · 14 years ago
- a42cf73 Support/PathV2: Implement reverse iteration and parent_path. by Michael J. Spencer · 14 years ago
- 1f98640 Support/PathV2: Fix 80 col. by Michael J. Spencer · 14 years ago
- 013d15a unittests: Merge SystemTests back into SupportTests. by Michael J. Spencer · 14 years ago
- dffde99 Support: Add PathV2 implementation. by Michael J. Spencer · 14 years ago
- 1f6efa3 Merge System into Support. by Michael J. Spencer · 14 years ago
- 5f456cd Disallow overlapping inserts, even when inserting the same value. by Jakob Stoklund Olesen · 14 years ago
- 9a08ca3 Add default constructors for iterators. by Jakob Stoklund Olesen · 14 years ago
- 180e124 Implement const_iterator::advanceTo(). by Jakob Stoklund Olesen · 14 years ago
- 0559425 Add more tests for erase(). Fix a few exposed bugs. by Jakob Stoklund Olesen · 14 years ago
- b0b7214 Add test case with randomly ordered insertions, massive coalescing. by Jakob Stoklund Olesen · 14 years ago
- b9dec1f unittests/JITTests: Don't use --export-dynamic but --export-all-symbols on cygming. by NAKAMURA Takumi · 14 years ago
- 53bb5c0 Add B+-tree test case that creates a height 3 tree with a smaller root node. by Jakob Stoklund Olesen · 14 years ago
- 0f020f7 google test depends on Support. by Michael J. Spencer · 14 years ago
- 861ef4b unittests: Add initial Path-V2 test. by Michael J. Spencer · 14 years ago
- f2ca4cb unittests: Add SystemTests. by Michael J. Spencer · 14 years ago
- 9c336fa Tweak ImmutableMap/ImmutableSet/ImmutableList APIs by Ted Kremenek · 14 years ago
- 3afc385 reimplement SwapByteOrder.h in terms of overloading instead of by Chris Lattner · 14 years ago
- 655fbb4 Implement IntervalMap::clear(). by Jakob Stoklund Olesen · 14 years ago
- db52566 Support backwards iteration starting from end(). by Jakob Stoklund Olesen · 14 years ago
- a197cba Add test for PR 8111. By Frits van Bommel. by Dale Johannesen · 14 years ago
- 8dc9267 Add ADT/IntervalMap. by Jakob Stoklund Olesen · 14 years ago
- 0f60ddc unittests/CMakeLists.txt: [PR8225] Tweak linking JITTests on MSVC to add JITTests.def. by NAKAMURA Takumi · 14 years ago
- 130a2dd unittests/CMakeLists.txt: Suppress building ValueMapTest on MSVC older than 10(VS2010). by NAKAMURA Takumi · 14 years ago
- 737d281 Revert "Add ADT/IntervalMap.", GCC doesn't like it. by Jakob Stoklund Olesen · 14 years ago
- 8408edf Add ADT/IntervalMap. by Jakob Stoklund Olesen · 14 years ago
- e541528 Revert 119600 to unbreak the build. Francois, please investigate. by Jim Grosbach · 14 years ago
- f4efa8e Appease MSVC 2008: you can't use keyword this inside EXPECT_EQ(). by Francois Pichet · 14 years ago
- b08ca27 unittests/CMakeLists.txt: Add missing VMCore/ValueMapTest.cpp to VMCoreTests. by NAKAMURA Takumi · 14 years ago
- 1a9eb2f unittests/CMakeLists.txt: Don't use RTTI, or linking failed. by NAKAMURA Takumi · 14 years ago