summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms/Instrumentation.h
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2011-12-06 00:29:13 +0000
committerNick Lewycky <nicholas@mxc.ca>2011-12-06 00:29:13 +0000
commit7c0674100443b4115d2fd6472e59cd8dcb9cc6d4 (patch)
tree0a51c0cf95a178026381ea8504595938adcc83a3 /include/llvm/Transforms/Instrumentation.h
parentdce42b75dc05befb4f43b664951c80752904bcde (diff)
downloadllvm-7c0674100443b4115d2fd6472e59cd8dcb9cc6d4.tar.gz
llvm-7c0674100443b4115d2fd6472e59cd8dcb9cc6d4.tar.bz2
llvm-7c0674100443b4115d2fd6472e59cd8dcb9cc6d4.tar.xz
Expose a switch for the new gcov format.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145880 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/Instrumentation.h')
-rw-r--r--include/llvm/Transforms/Instrumentation.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Transforms/Instrumentation.h b/include/llvm/Transforms/Instrumentation.h
index f9b962387d..baa6364f50 100644
--- a/include/llvm/Transforms/Instrumentation.h
+++ b/include/llvm/Transforms/Instrumentation.h
@@ -29,7 +29,8 @@ ModulePass *createPathProfilerPass();
// Insert GCOV profiling instrumentation
ModulePass *createGCOVProfilerPass(bool EmitNotes = true, bool EmitData = true,
- bool Use402Format = false);
+ bool Use402Format = false,
+ bool UseExtraChecksum = false);
// Insert AddressSanitizer (address sanity checking) instrumentation
ModulePass *createAddressSanitizerPass();