This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from e7fac8a076 CodeView - add static data members to global variable debug info. new 5846cacafa clang support gnu asm goto. Syntax: asm [volatile] goto ( [...]
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/AST/Stmt.h | 51 ++++++++++- include/clang/Basic/DiagnosticParseKinds.td | 4 +- include/clang/Basic/DiagnosticSemaKinds.td | 10 ++- include/clang/Sema/Sema.h | 1 + lib/AST/ASTImporter.cpp | 10 ++- lib/AST/Stmt.cpp | 29 +++++-- lib/AST/StmtPrinter.cpp | 20 ++++- lib/AST/StmtProfile.cpp | 3 + lib/Analysis/CFG.cpp | 74 ++++++++++++---- lib/CodeGen/CGStmt.cpp | 126 ++++++++++++++++++---------- lib/Parse/ParseStmtAsm.cpp | 68 ++++++++++++--- lib/Sema/JumpDiagnostics.cpp | 114 +++++++++++++++---------- lib/Sema/SemaStmtAsm.cpp | 48 +++++++++-- lib/Sema/TreeTransform.h | 16 +++- lib/Serialization/ASTReaderStmt.cpp | 7 ++ lib/Serialization/ASTWriterStmt.cpp | 4 + test/Analysis/asm-goto.cpp | 52 ++++++++++++ test/CodeGen/asm-goto.c | 18 ++++ test/CodeGen/asm.c | 12 +++ test/CodeGen/inline-asm-mixed-style.c | 10 +-- test/Coverage/c-language-features.inc | 4 +- test/PCH/asm.h | 6 +- test/Parser/asm.c | 50 +++++++++++ test/Parser/asm.cpp | 51 +++++++++++ test/Sema/asm-goto.cpp | 45 ++++++++++ test/Sema/asm.c | 21 +++++ test/Sema/inline-asm-validate-tmpl.cpp | 10 +++ test/Sema/scope-check.c | 16 ++++ 28 files changed, 732 insertions(+), 148 deletions(-) create mode 100644 test/Analysis/asm-goto.cpp create mode 100644 test/CodeGen/asm-goto.c create mode 100644 test/Sema/asm-goto.cpp