llvm-project/clang/unittests
Daniel Jasper 7d028298ce clang-format: Fix special case of binary operator detection.
There is a pattern where evaluation order is used as control flow.
This patch special-cases a commonly occuring version of this pattern.

Before:
  Aaaaa *aaa = nullptr;
  // ...
  aaa &&aaa->f();

After:
  Aaaaa *aaa = nullptr;
  // ...
  aaa && aaa->f();

llvm-svn: 210017
2014-06-02 11:54:20 +00:00
..
AST Take PrintingPolicy::SuppressUnwrittenScope into account when printing the 2014-05-30 22:16:51 +00:00
ASTMatchers Make equalsNode work with pointers to subtypes. 2014-05-27 12:31:10 +00:00
Basic There is no std::errc:success, remove the llvm one. 2014-05-31 03:20:52 +00:00
Driver [cleanup] Re-sort includes with llvm/utils/sort_includes.py and fix 2014-03-04 10:05:20 +00:00
Format clang-format: Fix special case of binary operator detection. 2014-06-02 11:54:20 +00:00
Frontend ASTContext: Declare builtin types implicitly 2013-12-15 10:36:26 +00:00
Lex SourceManager: Use setMainFileID() consistently 2014-05-21 01:12:41 +00:00
Sema Replace OwningPtr with std::unique_ptr. 2014-03-07 20:03:18 +00:00
Tooling [modules] Fix ODR violation: there's another clang::TypeLocVisitor elsewhere. 2014-05-19 22:34:38 +00:00
libclang VirtualFileSystem: Fix a few directory traversal bugs in VFSWriter 2014-05-21 22:46:51 +00:00
CMakeLists.txt libclang: fix a bug in processing invalid arguments, introduced in r201249 2014-02-18 15:20:02 +00:00
Makefile libclang: fix a bug in processing invalid arguments, introduced in r201249 2014-02-18 15:20:02 +00:00