Go to file
Daniel Jasper 9ecb0e96b8 clang-format: Don't corrupt macros with open braces.
Formatting:
  #define A { {
  #define B } }

Before:
  #define A               \
    {                     \
      { #define B }       \
    }

After:
  #define A               \
    {                     \
      {
  #define B               \
    }                     \
    }

This fixes llvm.org/PR22884.

llvm-svn: 232166
2015-03-13 13:32:11 +00:00
clang clang-format: Don't corrupt macros with open braces. 2015-03-13 13:32:11 +00:00
clang-tools-extra Add clangBasic to libdeps according to r232051 since the interface of ASTMatchers was changed. 2015-03-13 03:47:43 +00:00
compiler-rt We want single precision here. 2015-03-13 00:18:28 +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 Fix bitselect for float/double types v2 2015-03-05 15:31:05 +00:00
libcxx Update copyright year to 2015. 2015-03-12 20:13:11 +00:00
libcxxabi Update copyright year to 2015. 2015-03-12 20:13:54 +00:00
lld LinkerScript: Add evaluation of the EXTERN command 2015-03-12 21:55:55 +00:00
lldb Fix expectation in TestDataFormatterSynth 2015-03-13 11:59:58 +00:00
llgo [llgo] update year in LICENSE.txt 2015-03-13 01:36:02 +00:00
llvm Recommit r232027 with PR22883 fixed: Add infrastructure for support of multiple memory constraints. 2015-03-13 12:45:09 +00:00
openmp fix for broken commit 231774 2015-03-10 10:14:57 +00:00
polly Add -polly-vectorizer=stripmine 2015-03-12 20:48:07 +00:00