aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Frontend/CompilerInvocation.cpp
diff options
context:
space:
mode:
authorPetr Hosek <phosek@google.com>2021-01-26 12:25:28 -0800
committerPetr Hosek <phosek@google.com>2021-01-26 12:25:28 -0800
commit1e634f3952aa3914d9f962ac1151fccb4469d8ac (patch)
tree96d125971b1dbe27cd7af60fef2b9f48a6d3d4ec /clang/lib/Frontend/CompilerInvocation.cpp
parent7636b1f6efd56063adcde4f908740660365462a5 (diff)
downloadllvm-1e634f3952aa3914d9f962ac1151fccb4469d8ac.zip
llvm-1e634f3952aa3914d9f962ac1151fccb4469d8ac.tar.gz
llvm-1e634f3952aa3914d9f962ac1151fccb4469d8ac.tar.bz2
Revert "Support for instrumenting only selected files or functions"
This reverts commit 4edf35f11a9e20bd5df3cb47283715f0ff38b751 because the test fails on Windows bots.
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r--clang/lib/Frontend/CompilerInvocation.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp
index b9e3d69..f6e392f 100644
--- a/clang/lib/Frontend/CompilerInvocation.cpp
+++ b/clang/lib/Frontend/CompilerInvocation.cpp
@@ -1355,10 +1355,6 @@ static void ParseDependencyOutputArgs(DependencyOutputOptions &Opts,
}
}
- // -fprofile-list= dependencies.
- for (const auto &Filename : Args.getAllArgValues(OPT_fprofile_list_EQ))
- Opts.ExtraDeps.push_back(Filename);
-
// Propagate the extra dependencies.
for (const auto *A : Args.filtered(OPT_fdepfile_entry)) {
Opts.ExtraDeps.push_back(A->getValue());