This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 53f33d5a65 [clang][OpenMP][NFC] #include GlobalDecl.h to avoid incomple [...] new 458ec23df3 Use scope qualifiers in Clang's tblgen backends to get usefu [...] new 739c4b366a Emit TypeNodes.def with tblgen.
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/AST/CMakeLists.txt | 4 + include/clang/AST/Type.h | 5 +- include/clang/AST/TypeNodes.def | 135 ------------- include/clang/Basic/TypeNodes.td | 106 ++++++++++ utils/TableGen/CMakeLists.txt | 1 + utils/TableGen/ClangASTNodesEmitter.cpp | 10 +- utils/TableGen/ClangAttrEmitter.cpp | 10 +- utils/TableGen/ClangCommentCommandInfoEmitter.cpp | 8 +- ...ngCommentHTMLNamedCharacterReferenceEmitter.cpp | 9 +- utils/TableGen/ClangDataCollectorsEmitter.cpp | 5 +- utils/TableGen/ClangDiagnosticsEmitter.cpp | 18 +- utils/TableGen/ClangOpcodesEmitter.cpp | 7 +- utils/TableGen/ClangOpenCLBuiltinEmitter.cpp | 7 +- utils/TableGen/ClangOptionDocEmitter.cpp | 9 +- utils/TableGen/ClangSACheckersEmitter.cpp | 5 +- utils/TableGen/ClangTypeNodesEmitter.cpp | 220 +++++++++++++++++++++ utils/TableGen/NeonEmitter.cpp | 13 +- utils/TableGen/TableGen.cpp | 6 + utils/TableGen/TableGenBackends.h | 1 + 19 files changed, 377 insertions(+), 202 deletions(-) delete mode 100644 include/clang/AST/TypeNodes.def create mode 100644 include/clang/Basic/TypeNodes.td create mode 100644 utils/TableGen/ClangTypeNodesEmitter.cpp