diff options
author | Justin Bogner <mail@justinbogner.com> | 2014-03-21 17:24:48 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2014-03-21 17:24:48 +0000 |
commit | f8d791983cfc4a86a6d1a7186aa65bfbecf4c5c5 (patch) | |
tree | 6c24d9230524c8d8f984e849127965661a814767 /llvm/lib/CMakeLists.txt | |
parent | d8eb29ecfd7ec7f4744bc7ea52e13bbebecea430 (diff) | |
download | bcm5719-llvm-f8d791983cfc4a86a6d1a7186aa65bfbecf4c5c5.tar.gz bcm5719-llvm-f8d791983cfc4a86a6d1a7186aa65bfbecf4c5c5.zip |
ProfileData: Introduce the InstrProfReader interface and a text reader
This introduces the ProfileData library and updates llvm-profdata to
use this library for reading profiles. InstrProfReader is an abstract
base class that will be subclassed for both the raw instrprof data
from compiler-rt and the efficient instrprof format that will be used
for PGO.
llvm-svn: 204482
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..fab1c8747b9 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(ProfileData) |