diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2011-12-06 00:29:13 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2011-12-06 00:29:13 +0000 |
commit | 72d4d32cd629b41616e389ed8301a3086c6d01c1 (patch) | |
tree | dbbe3105fb761a7699b92f3c9132a03ce6388983 /llvm/lib/Transforms | |
parent | 8abf65a1309987b52390b356eff53999df261364 (diff) | |
download | bcm5719-llvm-72d4d32cd629b41616e389ed8301a3086c6d01c1.tar.gz bcm5719-llvm-72d4d32cd629b41616e389ed8301a3086c6d01c1.zip |
Expose a switch for the new gcov format.
llvm-svn: 145880
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp b/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp index 3ba5d2c74d5..96e5d5b3114 100644 --- a/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp +++ b/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp @@ -108,8 +108,9 @@ INITIALIZE_PASS(GCOVProfiler, "insert-gcov-profiling", "Insert instrumentation for GCOV profiling", false, false) ModulePass *llvm::createGCOVProfilerPass(bool EmitNotes, bool EmitData, - bool Use402Format) { - return new GCOVProfiler(EmitNotes, EmitData, Use402Format); + bool Use402Format, + bool UseExtraChecksum) { + return new GCOVProfiler(EmitNotes, EmitData, Use402Format, UseExtraChecksum); } namespace { |