diff options
author | Justin Bogner <mail@justinbogner.com> | 2014-03-12 20:14:05 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2014-03-12 20:14:05 +0000 |
commit | a2e0368994e9ba8a26dce854b64b03281910d6b2 (patch) | |
tree | ca656c37bef8be474a8bb313ba92ee87197814b1 /llvm/lib/CMakeLists.txt | |
parent | da6b4f028ad7c8ff752bba3ad014fdc6a04b9f27 (diff) | |
download | bcm5719-llvm-a2e0368994e9ba8a26dce854b64b03281910d6b2.tar.gz bcm5719-llvm-a2e0368994e9ba8a26dce854b64b03281910d6b2.zip |
Profile: Add a library for the instrumentation based profiling format
This provides a library to work with the instrumentation based
profiling format that is used by clang's -fprofile-instr-* options and
by the llvm-profdata tool. This is a binary format, rather than the
textual one that's currently in use.
The tests are in the subsequent commits that use this.
llvm-svn: 203703
Diffstat (limited to 'llvm/lib/CMakeLists.txt')
-rw-r--r-- | llvm/lib/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CMakeLists.txt b/llvm/lib/CMakeLists.txt index 9367f553134..a4496f9e58b 100644 --- a/llvm/lib/CMakeLists.txt +++ b/llvm/lib/CMakeLists.txt @@ -16,3 +16,4 @@ add_subdirectory(ExecutionEngine) add_subdirectory(Target) add_subdirectory(AsmParser) add_subdirectory(LineEditor) +add_subdirectory(Profile) |