diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-05-17 23:05:13 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-05-17 23:05:13 +0000 |
commit | f5c95b889f270f170ff4f6a24b082be5bb68296e (patch) | |
tree | 55394058a426a05b4b1296f82efd7c1bc03336c2 /include/llvm/Transforms | |
parent | 9c4dae6b0bd1b4667b7a6ce5d804f60615bac639 (diff) |
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')
-rw-r--r-- | include/llvm/Transforms/Instrumentation.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Transforms/Instrumentation.h b/include/llvm/Transforms/Instrumentation.h index 088775a9df..8d552317f2 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 |