Go to file
Daniel Jasper e662316994 clang-format: Prefer wrapping a lambda's body over the lambda's return type.
Before:
  aaaaaaaaaaaaaaaaaaaaaa(
      [](aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa &aaa)
          -> aaaaaaaaaaaaaaaaaaaaa { return aaaaaaaaaaaaaaaaa; });

After:
  aaaaaaaaaaaaaaaaaaaaaa(
      [](aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa &aaa) -> aaaaaaaaaaaaaaaaaaaaa {
        return aaaaaaaaaaaaaaaaa;
      });

llvm-svn: 230942
2015-03-02 10:35:13 +00:00
clang clang-format: Prefer wrapping a lambda's body over the lambda's return type. 2015-03-02 10:35:13 +00:00
clang-tools-extra Add 'let' to the help message. 2015-02-27 17:53:23 +00:00
compiler-rt Revert r229678 "tsan: fix signal handling during stop-the-world" 2015-02-28 22:18:11 +00:00
debuginfo-tests New round of fixes for "Always compile debuginfo-tests for the host triple" 2014-10-18 23:47:59 +00:00
libclc libclc/math: Add cospi 2015-02-26 15:42:00 +00:00
libcxx cmath: account for MSVCRT 12.0 changes 2015-02-28 20:18:39 +00:00
libcxxabi Unwind: make it build on Darwin again 2015-02-28 02:23:54 +00:00
lld Update the list of relocations that need to be implemented. 2015-03-02 06:17:38 +00:00
lldb Linux - debugging of local processes via lldb-gdbserver 2015-03-01 23:21:29 +00:00
llgo Build cgo and llgo-go 2015-02-14 01:46:01 +00:00
llvm Teach the verifier to enforce that the alignment argument of memory intrinsics must be a power of 2. 2015-03-02 09:35:06 +00:00
openmp Removed all header files for OpenMP 2.5 2015-02-25 18:38:08 +00:00
polly [Refactor] Include explicitly what is used 2015-03-01 18:51:51 +00:00