hanchenye-llvm-project/clang/unittests
Daniel Jasper 78b1949950 clang-format: Correct SBPO_Always-behavior after function-like keywords
Before:
  auto f (int x) -> decltype(x) { return sizeof(x); }
  int g () noexcept(someCall ());
  static_assert(sizeof(char) == 1, "Your compiler is broken");

After:
  auto f (int x) -> decltype (x) { return sizeof (x); }
  int g () noexcept (someCall ());
  static_assert (sizeof (char) == 1, "Your compiler is broken");

This fixes llvm.org/PR20559.
Patch by Roman Kashitsyn, thank you!

llvm-svn: 214969
2014-08-06 14:15:41 +00:00
..
AST Obective-C. Patch to fix the incorrect ObjcMessageExpr argument source ranges, 2014-07-31 17:39:50 +00:00
ASTMatchers ASTMatchersTests/matchesConditionallyWithCuda: Add -fno-ms-extensions, and get rid of initializer list. 2014-08-05 15:54:43 +00:00
Basic Update unit test for signature change. 2014-07-08 16:07:39 +00:00
Driver [Driver] clang::driver::getARMCPUForMArch() moved to llvm::Triple::getARMCPUForArch(). 2014-07-11 23:47:48 +00:00
Format clang-format: Correct SBPO_Always-behavior after function-like keywords 2014-08-06 14:15:41 +00:00
Frontend Revert "unique_ptr-ify ownership of ASTConsumers" 2014-07-17 22:34:12 +00:00
Lex [CMake] LexTests: Prune redundant libdep(s). 2014-07-24 11:44:03 +00:00
Sema Revert "unique_ptr-ify ownership of ASTConsumers" 2014-07-17 22:34:12 +00:00
Tooling Revert "unique_ptr-ify ownership of ASTConsumers" 2014-07-17 22:34:12 +00:00
libclang Make clang's rewrite engine a core feature 2014-07-16 16:48:33 +00:00
CMakeLists.txt Make clang's rewrite engine a core feature 2014-07-16 16:48:33 +00:00
Makefile Make clang's rewrite engine a core feature 2014-07-16 16:48:33 +00:00