Go to file
Chandler Carruth d031fe9fcf [C++11] Remove the completely unnecessary requirement on SetVector's
remove_if that its predicate is adaptable. We don't actually need this,
we can write a generic adapter for any predicate.

This lets us remove some very wrong std::function usages. We should
never be using std::function for predicates to algorithms. This incurs
an *indirect* call overhead for every evaluation of the predicate, and
makes it very hard to inline through.

llvm-svn: 202742
2014-03-03 19:28:52 +00:00
clang Update call DIBuilder::createLexicalBlock. 2014-03-03 18:53:32 +00:00
clang-tools-extra Normalized the usage of override in the doc. 2014-03-03 13:36:30 +00:00
compiler-rt [msan] Tests for X86 SIMD bitshift intrinsic support. 2014-03-03 13:52:36 +00:00
debuginfo-tests Relax testcase: Newer versions of LLDB don't necessarily print the "{". 2014-02-27 17:51:50 +00:00
libclc Fix build since r202052 2014-02-24 21:31:56 +00:00
libcxx Implement LWG 2324: Insert iterator constructors should use addressof(). Add two new container classes to the test suite that overload operator &, and add test cases to the insert/front_insert/back_insert iterator tests that use these containers. 2014-03-03 19:20:40 +00:00
libcxxabi Demangle Dc to decltype(auto) as per the Itanium C++ ABI spec. 2014-02-17 21:56:01 +00:00
lld [C++11] Add #include's for OwningPtr. 2014-03-03 07:20:05 +00:00
lldb Only require thread scope when we're about to run the function on a thread. 2014-03-03 19:16:45 +00:00
llvm [C++11] Remove the completely unnecessary requirement on SetVector's 2014-03-03 19:28:52 +00:00
openmp Make affinity support conditional on KMP_AFFINITY_SUPPORTED 2014-03-02 04:12:06 +00:00
polly [C++11] Use foreach iterator for blocks and operands 2014-03-03 13:13:55 +00:00