This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b9c0a17b9f2 [X86] Fix 32-bit mingw comdat names, only add one underscore new 3499852bee2 [Instrumentation] Add Call Graph Profile pass
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: .../llvm/CodeGen/TargetLoweringObjectFileImpl.h | 3 + include/llvm/InitializePasses.h | 1 + include/llvm/LinkAllPasses.h | 1 + include/llvm/Transforms/Instrumentation.h | 2 + lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 54 ++++++++-- lib/IR/Verifier.cpp | 20 ++++ lib/Transforms/IPO/PassManagerBuilder.cpp | 2 + lib/Transforms/Instrumentation/CGProfile.cpp | 110 +++++++++++++++++++++ lib/Transforms/Instrumentation/CMakeLists.txt | 1 + lib/Transforms/Instrumentation/Instrumentation.cpp | 1 + test/Instrumentation/cgprofile.ll | 28 ++++++ test/MC/ELF/cgprofile.ll | 50 ++++++++++ test/Verifier/module-flags-cgprofile.ll | 30 ++++++ 13 files changed, 296 insertions(+), 7 deletions(-) create mode 100644 lib/Transforms/Instrumentation/CGProfile.cpp create mode 100644 test/Instrumentation/cgprofile.ll create mode 100644 test/MC/ELF/cgprofile.ll create mode 100644 test/Verifier/module-flags-cgprofile.ll