llvm-project/clang/lib
Daniel Jasper 2aaedd3a7e clang-format: Make AlwaysBreakBeforeMultilineStrings more conservative.
In essence this is meant to consistently indent multiline strings by a
fixed amount of spaces from the start of the line. Don't do this in
cases where it wouldn't help anyway.

Before:
  someFunction(aaaaa,
               "aaaaa"
               "bbbbb");

After:
  someFunction(aaaaa, "aaaaa"
                      "bbbbb");

llvm-svn: 240004
2015-06-18 09:12:47 +00:00
..
ARCMigrate Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial types 2015-05-29 19:42:19 +00:00
AST [modules] Improve diagnostic for a template-id that's invalid because a default 2015-06-17 20:16:32 +00:00
ASTMatchers Move a test from static-assert.cpp to DeclPrinterTest 2015-06-05 22:40:53 +00:00
Analysis Append CXXDefaultInitExpr's wrapped expression to the CFG when visiting a constructor initializer 2015-06-03 10:12:40 +00:00
Basic Revert "[Sanitizers] Provide better diagnostic for sanitizers unsupported for target triple." 2015-06-17 22:27:32 +00:00
CodeGen [OPENMP] Add support for 'omp for simd' directive. 2015-06-18 04:45:29 +00:00
Driver [Driver] Remove unused class member. NFC. 2015-06-18 00:36:40 +00:00
Edit [edit] Don't hit an assert when trying to delete a trailing space at EOF 2015-03-29 18:07:29 +00:00
Format clang-format: Make AlwaysBreakBeforeMultilineStrings more conservative. 2015-06-18 09:12:47 +00:00
Frontend [fixit] Use overwriteChangedFiles() to deal with Windows mapped files 2015-06-17 17:47:30 +00:00
FrontendTool Provide a BuryPointer for unique_ptrs. 2014-08-29 16:53:14 +00:00
Headers Move xtest to its own file to match the gcc header organization. 2015-06-17 18:42:07 +00:00
Index Rename MacroDefinition -> MacroDefinitionRecord, Preprocessor::MacroDefinition -> MacroDefinition. 2015-05-04 02:25:31 +00:00
Lex [modules] Simplify -cc1 interface for enabling implicit module maps. 2015-06-16 00:08:24 +00:00
Parse parser: diagnose empty attribute blocks 2015-06-16 20:03:47 +00:00
Rewrite Remove empty non-virtual destructors or mark them =default when non-public 2015-04-11 15:58:30 +00:00
Sema [OPENMP] Add support for 'omp for simd' directive. 2015-06-18 04:45:29 +00:00
Serialization [modules] Ensure that if we merge the definitions of two enumerations, that 2015-06-17 23:07:50 +00:00
StaticAnalyzer [analyzer] Remove ObjCContainersChecker size information when a CFMutableArrayRef escapes 2015-06-15 01:00:42 +00:00
Tooling Tooling: When applying a set of replacements, do deletions before 2015-06-16 10:22:10 +00:00
CMakeLists.txt Fix build with various feature flag combinations 2014-07-14 22:17:22 +00:00
Makefile Make clang's rewrite engine a core feature 2014-07-16 16:48:33 +00:00