This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from d8e6e77 Fix assertion failure when generating debug information for a [...] new d6496f0 Add more ODR checking.
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/ODRHash.h | 84 +++++ .../clang/Basic/DiagnosticSerializationKinds.td | 9 + lib/AST/CMakeLists.txt | 1 + lib/AST/DeclCXX.cpp | 11 +- lib/AST/ODRHash.cpp | 152 ++++++++ lib/Serialization/ASTReader.cpp | 144 ++++++- test/Modules/odr_hash.cpp | 412 +++++++++++++++++++++ 7 files changed, 800 insertions(+), 13 deletions(-) create mode 100644 include/clang/AST/ODRHash.h create mode 100644 lib/AST/ODRHash.cpp create mode 100644 test/Modules/odr_hash.cpp