Go to file
Daniel Jasper 031e2409f9 clang-format: Fixes spaces in case statements.
This fixes llvm.org/PR19482.

Before:
  switch (a) {
    case(B) :
      return;
  }

After:
  switch (a) {
    case (B):
      return;
  }

llvm-svn: 207402
2014-04-28 07:48:36 +00:00
clang clang-format: Fixes spaces in case statements. 2014-04-28 07:48:36 +00:00
clang-tools-extra Now with correct -disable-checks= 2014-04-27 15:37:29 +00:00
compiler-rt [sanitizer] Limit fopen interceptor to linux. 2014-04-25 13:55:29 +00:00
debuginfo-tests relax testcase for LLDB output format compatibility. 2014-03-19 23:06:18 +00:00
libclc Introduce M_LOG2E_F and M_LOG2E 2014-03-28 21:19:03 +00:00
libcxx Fix bug #18350. Add tests for tuples of all the smart pointers (except auto_ptr) 2014-04-26 05:19:48 +00:00
libcxxabi Properly sign extend delta in compact unwind info 2014-04-25 01:39:06 +00:00
lld [PECOFF] Allow multiple directives in one module-definition file. 2014-04-26 00:25:02 +00:00
lldb Fixed up lldb-gdbserver to match slightly different debugserver listener host:port message. 2014-04-28 06:04:46 +00:00
llvm [ARM64]Fix a bug cannot select UQSHL/SQSHL with constant i64 shift amount. 2014-04-28 07:34:27 +00:00
openmp Add the offload directory which contains the code needed to support 2014-04-09 15:40:23 +00:00
polly www: Reference phone call notes 2014-04-23 18:09:24 +00:00