This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from d1d2af0946 Fix ms-layout_version declspec test and add missing new test new 3eb970db6b Automatic variable initialization
The 1 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/Attr.td | 6 + include/clang/Basic/AttrDocs.td | 12 + include/clang/Basic/DiagnosticDriverKinds.td | 5 + include/clang/Basic/LangOptions.def | 2 + include/clang/Basic/LangOptions.h | 5 + include/clang/Driver/Options.td | 6 + include/clang/Driver/ToolChain.h | 8 +- lib/CodeGen/CGDecl.cpp | 257 +++++++++++++++- lib/Driver/ToolChains/Clang.cpp | 45 +++ lib/Frontend/CompilerInvocation.cpp | 13 + lib/Sema/SemaDeclAttr.cpp | 12 + test/CodeGenCXX/auto-var-init.cpp | 336 ++++++++++++++++++++- .../CodeGenCXX/trivial-auto-var-init-attribute.cpp | 23 ++ test/CodeGenCXX/trivial-auto-var-init.cpp | 216 +++++++++++++ test/Driver/clang_f_opts.c | 9 + test/Sema/attr-uninitialized.c | 21 ++ test/Sema/uninit-variables.c | 1 + 17 files changed, 961 insertions(+), 16 deletions(-) create mode 100644 test/CodeGenCXX/trivial-auto-var-init-attribute.cpp create mode 100644 test/CodeGenCXX/trivial-auto-var-init.cpp create mode 100644 test/Sema/attr-uninitialized.c