Go to file
Daniel Jasper 9b246e09ce clang-format: Keep empty lines and format 1-line nested blocks.
Let clang-format consistently keep up to one empty line (configured via
FormatStyle::MaxEmptyLinesToKeep) in nested blocks, e.g. lambdas. Also,
actually format single statements in nested blocks.

Before:
  DEBUG({ int     i; });
  DEBUG({
    int i;
    // an empty line here would just be removed.
    int j;
  });

After:
  DEBUG({ int i; });
  DEBUG({
    int i;

    int j;
  });

llvm-svn: 190278
2013-09-08 14:07:57 +00:00
clang clang-format: Keep empty lines and format 1-line nested blocks. 2013-09-08 14:07:57 +00:00
clang-tools-extra clang-modernize: Fix bugs in Pass-By-Value transform 2013-09-06 22:28:53 +00:00
compiler-rt [ASan] fix one more memory leak in test case 2013-09-08 14:01:07 +00:00
debuginfo-tests Auto-detect the architecture of the executable instead of using the arch of 2013-09-07 20:04:29 +00:00
libclc Implement mad_hi built-in 2013-09-06 22:09:51 +00:00
libcxx LWG Issue 2210 (Part #1): deque 2013-09-07 16:16:19 +00:00
libcxxabi Change the two last remaining _LIBCPP_CANTTHROW to _NOEXCEPT 2013-08-29 19:19:27 +00:00
lld Drop the context forceLoadAllArchives() support. Rename the isForceLoad 2013-09-08 13:30:14 +00:00
lldb Added some MSVC required functions in Windows.cpp. Moved MSVC specific getopt code inside its own folder. 2013-09-07 05:05:49 +00:00
llvm Bring back the build of libprofile_rt on Sparc. It is now working correctly. See: 2013-09-08 09:15:09 +00:00
polly ScopInfo: Correctly handle true/false conditions 2013-09-07 01:54:13 +00:00