This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a50609a0fa1 Change the timestamp of llvmcache-foo file to meet the thin [...] new 3b607cb1fc8 [VPlan] Fix CondBit quoting in dumpBasicBlock new 1cc98e6672b [OptRemarks] Add library for parsing optimization remarks
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-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 +++++++++++++++++++++ lib/Transforms/Vectorize/VPlan.cpp | 4 +- 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 +++++++++++++++++++++++++ 12 files changed, 1059 insertions(+), 143 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