This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 9786367305 [PR41567][Sema] Fixed cast kind in addr space conversions new 508d30929f Re-check in clang support gun asm goto after fixing tests.
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 | 53 ++++++++++++ test/CodeGen/asm-goto.c | 20 +++++ 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-goto.c | 57 +++++++++++++ test/Parser/asm-goto.cpp | 53 ++++++++++++ test/Sema/asm-goto.cpp | 63 ++++++++++++++ test/Sema/asm.c | 21 +++++ test/Sema/inline-asm-validate-tmpl.cpp | 10 +++ 27 files changed, 746 insertions(+), 148 deletions(-) create mode 100644 test/Analysis/asm-goto.cpp create mode 100644 test/CodeGen/asm-goto.c create mode 100644 test/Parser/asm-goto.c create mode 100644 test/Parser/asm-goto.cpp create mode 100644 test/Sema/asm-goto.cpp