diff options
| author | Alan Phipps <a-phipps@ti.com> | 2024-12-02 15:48:22 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-02 15:48:22 -0600 |
| commit | 92f5314706319a2a654a914c54ba6e73563fa906 (patch) | |
| tree | 7cc94361f5b96adfc38d6c6b88f6be9cc8ed8f6f /llvm/tools/llvm-cov/CodeCoverage.cpp | |
| parent | c906907d871d840b176cd0101863b7be3f33dee9 (diff) | |
| download | llvm-92f5314706319a2a654a914c54ba6e73563fa906.zip llvm-92f5314706319a2a654a914c54ba6e73563fa906.tar.gz llvm-92f5314706319a2a654a914c54ba6e73563fa906.tar.bz2 | |
Revert "[llvm-cov] Fix branch counts of template functions (#111743)" (#118398)
Reverts llvm/llvm-project#113925
Reverting to address buildbot failures.
Diffstat (limited to 'llvm/tools/llvm-cov/CodeCoverage.cpp')
| -rw-r--r-- | llvm/tools/llvm-cov/CodeCoverage.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/tools/llvm-cov/CodeCoverage.cpp b/llvm/tools/llvm-cov/CodeCoverage.cpp index 43ad4c1..d06fd86 100644 --- a/llvm/tools/llvm-cov/CodeCoverage.cpp +++ b/llvm/tools/llvm-cov/CodeCoverage.cpp @@ -1270,10 +1270,6 @@ int CodeCoverageTool::doExport(int argc, const char **argv, cl::desc("Don't export branch data (LCOV)"), cl::cat(ExportCategory)); - cl::opt<bool> UnifyInstantiations("unify-instantiations", cl::Optional, - cl::desc("Unify function instantiations"), - cl::init(true), cl::cat(ExportCategory)); - auto Err = commandLineParser(argc, argv); if (Err) return Err; @@ -1281,7 +1277,6 @@ int CodeCoverageTool::doExport(int argc, const char **argv, ViewOpts.SkipExpansions = SkipExpansions; ViewOpts.SkipFunctions = SkipFunctions; ViewOpts.SkipBranches = SkipBranches; - ViewOpts.UnifyFunctionInstantiations = UnifyInstantiations; if (ViewOpts.Format != CoverageViewOptions::OutputFormat::Text && ViewOpts.Format != CoverageViewOptions::OutputFormat::Lcov) { |
