This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 2116900d5c [driver] add a new option `-gen-cdb-fragment-path` to emit a [...] new c3225a63e4 Improve behavior in the case of stack exhaustion. new d2dd77a2da Fix file header.
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/Basic/DiagnosticCommonKinds.td | 5 + include/clang/Basic/DiagnosticSemaKinds.td | 1 - include/clang/Basic/Stack.h | 29 ++++ include/clang/Sema/Sema.h | 12 ++ lib/Basic/CMakeLists.txt | 1 + lib/Basic/Stack.cpp | 71 ++++++++++ lib/Frontend/CompilerInstance.cpp | 5 + lib/Sema/Sema.cpp | 14 ++ lib/Sema/SemaExpr.cpp | 194 +++++++++++++++------------ lib/Sema/SemaInit.cpp | 7 +- lib/Sema/SemaLookup.cpp | 56 +++++--- lib/Sema/SemaTemplate.cpp | 1 + lib/Sema/SemaTemplateDeduction.cpp | 14 +- lib/Sema/SemaTemplateInstantiate.cpp | 6 + lib/Sema/SemaTemplateInstantiateDecl.cpp | 6 +- lib/Sema/SemaType.cpp | 22 +-- test/CMakeLists.txt | 3 +- test/SemaTemplate/stack-exhaustion.cpp | 18 +++ test/lit.cfg.py | 3 + test/lit.site.cfg.py.in | 1 + tools/driver/driver.cpp | 2 + 21 files changed, 348 insertions(+), 123 deletions(-) create mode 100644 lib/Basic/Stack.cpp create mode 100644 test/SemaTemplate/stack-exhaustion.cpp