This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 2a9ea3459b2 [Support] Remove redundant qualifiers in YAMLTraits (NFC) new 105b05e0855 Reland: [OptRemarks] Add library for parsing optimization remarks
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-c/OptRemarks.h | 197 +++++++++++ lib/CMakeLists.txt | 1 + lib/LLVMBuild.txt | 1 + lib/OptRemarks/CMakeLists.txt | 3 + lib/{ => OptRemarks}/LLVMBuild.txt | 40 +-- lib/OptRemarks/OptRemarksParser.cpp | 368 +++++++++++++++++++++ tools/llvm-opt-report/CMakeLists.txt | 2 +- tools/llvm-opt-report/OptReport.cpp | 144 +++----- unittests/CMakeLists.txt | 1 + unittests/OptRemarks/CMakeLists.txt | 8 + unittests/OptRemarks/OptRemarksParsingTest.cpp | 433 +++++++++++++++++++++++++ 11 files changed, 1056 insertions(+), 142 deletions(-) create mode 100644 include/llvm-c/OptRemarks.h create mode 100644 lib/OptRemarks/CMakeLists.txt copy lib/{ => OptRemarks}/LLVMBuild.txt (57%) create mode 100644 lib/OptRemarks/OptRemarksParser.cpp create mode 100644 unittests/OptRemarks/CMakeLists.txt create mode 100644 unittests/OptRemarks/OptRemarksParsingTest.cpp