hanchenye-llvm-project/clang/unittests
Daniel Jasper 3eb341c478 clang-format: Improve handling of comments in binary expressions.
Before:
  b = a &&
      // Comment
      b.c &&
      d;

After:
  b = a &&
      // Comment
      b.c && d;

This fixes llvm.org/PR21535.

llvm-svn: 221727
2014-11-11 23:04:51 +00:00
..
AST Fix bug in DynTypedMatcher::constructVariadic() that would cause false negatives. 2014-10-06 13:14:30 +00:00
ASTMatchers Add valueDecl() matcher. 2014-10-28 13:33:58 +00:00
Basic Make VFS and FileManager match the current MemoryBuffer API. 2014-10-26 22:44:13 +00:00
CodeGen unique_ptrify SourceManager::createFileID 2014-08-29 07:59:55 +00:00
Driver [Driver] clang::driver::getARMCPUForMArch() moved to llvm::Triple::getARMCPUForArch(). 2014-07-11 23:47:48 +00:00
Format clang-format: Improve handling of comments in binary expressions. 2014-11-11 23:04:51 +00:00
Frontend Try to fix link errors in mingw cmake -DBUILD_SHARED_LIBS=ON 2014-10-22 20:20:35 +00:00
Lex Avoid having "using namespace" for both "clang" and "llvm" namespaces. 2014-10-15 22:00:40 +00:00
Sema Recommit 213307: unique_ptr-ify ownership of ASTConsumers (reverted in r213325) 2014-08-10 19:56:51 +00:00
Tooling [CMake] Add dependencies on clangToolingCore. 2014-10-30 00:44:01 +00:00
libclang [autoconf] Add clangToolingCore.a to Makefile(s) for static build w/o libclang.dll. 2014-10-30 10:31:29 +00:00
CMakeLists.txt Don't segfault in EmitCXXGlobalInitFunc when main file is a membuf 2014-08-26 22:10:15 +00:00
Makefile [Makefile] If ENABLE_CLANG_ARCMT=0 it seems we don't build libclang, so the unittests for libclang should be disabled too. 2014-10-31 16:44:30 +00:00