This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0719114 revert r288283 as it causes debug info (line numbers) to be l [...] new 66a1cdb LTO: Remove Symbol::getIRName(). new c22ac1d Use trigrams to speed up SpecialCaseList.
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/llvm/LTO/LTO.h | 7 +- include/llvm/Support/TrigramIndex.h | 70 +++++++++++++++++++ lib/LTO/LTO.cpp | 5 +- lib/Support/CMakeLists.txt | 1 + lib/Support/SpecialCaseList.cpp | 12 +++- lib/Support/TrigramIndex.cpp | 98 ++++++++++++++++++++++++++ unittests/Support/CMakeLists.txt | 1 + unittests/Support/SpecialCaseListTest.cpp | 44 ++++++++++++ unittests/Support/TrigramIndexTest.cpp | 112 ++++++++++++++++++++++++++++++ 9 files changed, 342 insertions(+), 8 deletions(-) create mode 100644 include/llvm/Support/TrigramIndex.h create mode 100644 lib/Support/TrigramIndex.cpp create mode 100644 unittests/Support/TrigramIndexTest.cpp