Go to file
Manuel Klimek 516e054c05 Implement parsing of blocks (^{ ... }) in the unwrapped line parser.
This patch makes sure we produce the right number of unwrapped lines,
a follow-up patch will make the whitespace formatting consistent.

Before:
 void f() {
   int i = {[operation setCompletionBlock : ^{ [self onOperationDone];
 }]
 }
 ;
 }

After:
 void f() {
   int i = {[operation setCompletionBlock : ^{
     [self onOperationDone];
   }] };
 }

llvm-svn: 189932
2013-09-04 13:25:30 +00:00
clang Implement parsing of blocks (^{ ... }) in the unwrapped line parser. 2013-09-04 13:25:30 +00:00
clang-tools-extra Suppress test/modularize/NoProblemsDependencies.modularize on msvc, for now. Investigating. 2013-09-04 02:03:03 +00:00
compiler-rt [asan] make use-after-return handle very deep recursion; fixes 483.xalancbmk in UAR mode 2013-09-04 10:59:32 +00:00
debuginfo-tests Only fail this on darwin since most other platforms should have a newer 2013-09-04 05:06:10 +00:00
libclc Add mul_hi implementation [v2] 2013-08-19 18:31:49 +00:00
libcxx Updated status for LSG issues 2122, 2169, 2177, 2140 and 2086. 2013-09-04 01:06:59 +00:00
libcxxabi Change the two last remaining _LIBCPP_CANTTHROW to _NOEXCEPT 2013-08-29 19:19:27 +00:00
lld [lld][ELF] Differentiate between Note sections(RW/RO) 2013-09-04 02:42:02 +00:00
lldb Clean up handling of FreeBSD thread list on Launch / Attach 2013-09-03 23:55:30 +00:00
llvm InstCombine: allow unmasked icmps to be combined with logical ops 2013-09-04 11:57:17 +00:00
polly [CodeGen] Fixup assert fails caused by incorrect LoopInfo update 2013-09-02 16:13:00 +00:00