llvm-project/clang/lib
Daniel Jasper 1db6c38687 clang-format: Improve formatting of ObjC array literals.
Before:
  NSArray *arguments =
      @[ kind == kUserTicket ? @"--user-store" : @"--system-store",
         @"--print-tickets", @"--productid", @"com.google.Chrome" ];
After:
  NSArray *arguments = @[
      kind == kUserTicket ? @"--user-store" : @"--system-store",
      @"--print-tickets",
      @"--productid",
      @"com.google.Chrome"
  ];

This fixes llvm.org/PR15231.

llvm-svn: 193167
2013-10-22 15:30:28 +00:00
..
ARCMigrate ObjectiveC migrator. Minor clean up of my last patch. 2013-10-17 23:13:13 +00:00
AST Drop the unneeded VBase field from MethodInfo in the VFTableBuilder class 2013-10-22 14:50:20 +00:00
ASTMatchers Revert "Refactor DynTypedMatcher into a value type class, just like Matcher<T>." 2013-10-21 22:26:36 +00:00
Analysis Simplify some implementations of get*Decl. 2013-10-19 16:55:03 +00:00
Basic Set the default hardware division features for ARM cpus. Also set it as default for A32 armv8. 2013-10-21 10:59:33 +00:00
CodeGen Revert "This patch causes clang to reject alias attributes that point to undefined names. For example, with this patch we now reject" 2013-10-22 14:23:09 +00:00
Driver Driver: Various string-related cleanups. 2013-10-21 12:33:55 +00:00
Edit ObjectiveC migrator: When doing migration, migrator must suggest 2013-10-01 21:16:29 +00:00
Format clang-format: Improve formatting of ObjC array literals. 2013-10-22 15:30:28 +00:00
Frontend Fix crash if a submodule @imports another submodule from the same module. The 2013-10-18 22:48:20 +00:00
FrontendTool Remove -ast-dump-xml. 2013-10-07 20:56:34 +00:00
Headers Add implementations of the MSVC barrier intrinsics 2013-10-17 01:29:48 +00:00
Index Avoid using the 'index' namespace as scope. 2013-08-21 00:49:25 +00:00
Lex Allow a header to be part of multiple modules. 2013-10-22 08:09:47 +00:00
Parse Fix to PR8880 (clang dies processing a for loop). 2013-10-21 09:34:44 +00:00
Rewrite Fix typo: inccrementally 2013-10-13 12:02:16 +00:00
Sema Use early return. No functionality change. 2013-10-22 15:18:22 +00:00
Serialization Simplify some implementations of get*Decl. 2013-10-19 16:55:03 +00:00
StaticAnalyzer Forgot some references to misspelled enums. 2013-10-20 11:53:20 +00:00
Tooling Reverted r192992 broke windows and freebsd builds. 2013-10-18 19:48:31 +00:00
CMakeLists.txt Fix dependencies now that the ARC migrator depends on the static analyzer. 2013-08-22 15:50:02 +00:00
Makefile Fix dependencies now that the ARC migrator depends on the static analyzer. 2013-08-22 15:50:02 +00:00