This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 788dfe5 Fixup r279618, instantiate *AnalysisManagerProxy<*AnalysisMan [...] new f1f27bb ADT: Split out simple_ilist, a simple intrusive list
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/llvm/ADT/ilist.h | 135 ++------- include/llvm/ADT/ilist_base.h | 19 +- include/llvm/ADT/simple_ilist.h | 269 +++++++++++++++++ unittests/ADT/CMakeLists.txt | 1 + unittests/ADT/IListBaseTest.cpp | 40 +++ unittests/ADT/IListIteratorTest.cpp | 61 ++-- unittests/ADT/SimpleIListTest.cpp | 586 ++++++++++++++++++++++++++++++++++++ unittests/IR/CMakeLists.txt | 1 + unittests/IR/ModuleTest.cpp | 48 +++ 9 files changed, 1018 insertions(+), 142 deletions(-) create mode 100644 include/llvm/ADT/simple_ilist.h create mode 100644 unittests/ADT/SimpleIListTest.cpp create mode 100644 unittests/IR/ModuleTest.cpp