summaryrefslogtreecommitdiff
path: root/lib/Makefile
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2014-03-12 20:14:05 +0000
committerJustin Bogner <mail@justinbogner.com>2014-03-12 20:14:05 +0000
commit02da814a94c043452e3ad10915e8ba366218e925 (patch)
treefee3f84f130198d1e8acbb4539b35c27d77a4957 /lib/Makefile
parent7eb747e373344eeaf4486621cbb0cfd78e349033 (diff)
downloadllvm-02da814a94c043452e3ad10915e8ba366218e925.tar.gz
llvm-02da814a94c043452e3ad10915e8ba366218e925.tar.bz2
llvm-02da814a94c043452e3ad10915e8ba366218e925.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203703 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile
index a97f71aded..1f55dd7f96 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -12,6 +12,6 @@ include $(LEVEL)/Makefile.config
PARALLEL_DIRS := IR AsmParser Bitcode Analysis Transforms CodeGen Target \
ExecutionEngine Linker LTO MC Object Option DebugInfo \
- IRReader LineEditor
+ IRReader LineEditor Profile
include $(LEVEL)/Makefile.common