aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Transforms/Instrumentation.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-05-17 23:05:13 +0000
committerBill Wendling <isanbard@gmail.com>2011-05-17 23:05:13 +0000
commitf5c95b889f270f170ff4f6a24b082be5bb68296e (patch)
tree55394058a426a05b4b1296f82efd7c1bc03336c2 /include/llvm/Transforms/Instrumentation.h
parent9c4dae6b0bd1b4667b7a6ce5d804f60615bac639 (diff)
downloadexternal_llvm-f5c95b889f270f170ff4f6a24b082be5bb68296e.zip
external_llvm-f5c95b889f270f170ff4f6a24b082be5bb68296e.tar.gz
external_llvm-f5c95b889f270f170ff4f6a24b082be5bb68296e.tar.bz2
Conditionalize the format of the GCOV files by target type. Darwin uses the 4.2
format. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131503 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 088775a..8d55231 100644
--- a/include/llvm/Transforms/Instrumentation.h
+++ b/include/llvm/Transforms/Instrumentation.h
@@ -28,7 +28,8 @@ ModulePass *createOptimalEdgeProfilerPass();
ModulePass *createPathProfilerPass();
// Insert GCOV profiling instrumentation
-ModulePass *createGCOVProfilerPass(bool EmitNotes = true, bool EmitData = true);
+ModulePass *createGCOVProfilerPass(bool EmitNotes = true, bool EmitData = true,
+ bool Use402Format = false);
} // End llvm namespace