[llvm] [llvm-debuginfod-find] Remove old parameter comment (PR #109637)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 23 01:45:30 PDT 2024
https://github.com/boomanaiden154 created https://github.com/llvm/llvm-project/pull/109637
This patch removes a comment in llvm-debuginfod-find containing all the cl::opt entries, which are redundant after the conversion to using optTable. These seem to have been introduced in #108082 along with a conversion to optTable.
>From b436cd38c2989928beb13cd9961c2bd4d40531cf Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Mon, 23 Sep 2024 08:42:52 +0000
Subject: [PATCH] [llvm-debuginfod-find] Remove old parameter comment
This patch removes a comment in llvm-debuginfod-find containing all the
cl::opt entries, which are redundant after the conversion to using
optTable. These seem to have been introduced in #108082 along with a
conversion to optTable.
---
.../llvm-debuginfod-find.cpp | 39 -------------------
1 file changed, 39 deletions(-)
diff --git a/llvm/tools/llvm-debuginfod-find/llvm-debuginfod-find.cpp b/llvm/tools/llvm-debuginfod-find/llvm-debuginfod-find.cpp
index 1f4404aaa391fc..699fcf8a7dbcd6 100644
--- a/llvm/tools/llvm-debuginfod-find/llvm-debuginfod-find.cpp
+++ b/llvm/tools/llvm-debuginfod-find/llvm-debuginfod-find.cpp
@@ -98,45 +98,6 @@ static void parseArgs(int argc, char **argv) {
exit(1);
}
-/*
-cl::OptionCategory DebuginfodFindCategory("llvm-debuginfod-find Options");
-
-cl::opt<std::string> InputBuildID(cl::Positional, cl::Required,
- cl::desc("<input build_id>"), cl::init("-"),
- cl::cat(DebuginfodFindCategory));
-
-static cl::opt<bool>
- FetchExecutable("executable", cl::init(false),
- cl::desc("If set, fetch a binary file associated with this "
- "build id, containing the executable sections."),
- cl::cat(DebuginfodFindCategory));
-
-static cl::opt<bool>
- FetchDebuginfo("debuginfo", cl::init(false),
- cl::desc("If set, fetch a binary file associated with this "
- "build id, containing the debuginfo sections."),
- cl::cat(DebuginfodFindCategory));
-
-static cl::opt<std::string> FetchSource(
- "source", cl::init(""),
- cl::desc("Fetch a source file associated with this build id, which is at "
- "this relative path relative to the compilation directory."),
- cl::cat(DebuginfodFindCategory));
-
-static cl::opt<bool>
- DumpToStdout("dump", cl::init(false),
- cl::desc("If set, dumps the contents of the fetched artifact "
- "to standard output. Otherwise, dumps the absolute "
- "path to the cached artifact on disk."),
- cl::cat(DebuginfodFindCategory));
-
-static cl::list<std::string> DebugFileDirectory(
- "debug-file-directory",
- cl::desc("Path to directory where to look for debug files."),
- cl::cat(DebuginfodFindCategory));
-
-*/
-
ExitOnError ExitOnDebuginfodFindError;
static std::string fetchDebugInfo(object::BuildIDRef BuildID);
More information about the llvm-commits
mailing list