Skip to content

Commit 631be5c

Browse files
committed
Remove Support/Options.h, it is unused
It was added in 2014 in 732e0aa with one use in Scalarizer.cpp. That one use was then removed when porting to the new pass manager in 2018 in b6f7600. While the RFC and the desire to get off of static initializers for cl::opt all still stand, this code is now dead, and I think we should delete this code until someone is ready to do the migration. There were many clients of CommandLine.h that were it transitively through LLVMContext.h, so I cleaned that up in 4c1a1d3. Reviewers: beanz Differential Revision: https://reviews.llvm.org/D70280
1 parent caf3166 commit 631be5c

File tree

8 files changed

+4
-166
lines changed

8 files changed

+4
-166
lines changed

clang/tools/clang-scan-deps/ClangScanDeps.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
#include "clang/Tooling/DependencyScanning/DependencyScanningTool.h"
1313
#include "clang/Tooling/DependencyScanning/DependencyScanningWorker.h"
1414
#include "clang/Tooling/JSONCompilationDatabase.h"
15+
#include "llvm/Support/CommandLine.h"
1516
#include "llvm/Support/InitLLVM.h"
16-
#include "llvm/Support/Options.h"
1717
#include "llvm/Support/Program.h"
1818
#include "llvm/Support/Signals.h"
1919
#include "llvm/Support/Threading.h"

llvm/include/llvm/IR/LLVMContext.h

-9
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
#include "llvm-c/Types.h"
1818
#include "llvm/IR/DiagnosticHandler.h"
1919
#include "llvm/Support/CBindingWrapping.h"
20-
#include "llvm/Support/Options.h"
2120
#include <cstdint>
2221
#include <memory>
2322
#include <string>
@@ -288,14 +287,6 @@ class LLVMContext {
288287
void emitError(const Instruction *I, const Twine &ErrorStr);
289288
void emitError(const Twine &ErrorStr);
290289

291-
/// Query for a debug option's value.
292-
///
293-
/// This function returns typed data populated from command line parsing.
294-
template <typename ValT, typename Base, ValT(Base::*Mem)>
295-
ValT getOption() const {
296-
return OptionRegistry::instance().template get<ValT, Base, Mem>();
297-
}
298-
299290
/// Access the object which can disable optional passes and individual
300291
/// optimizations at compile time.
301292
OptPassGate &getOptPassGate() const;

llvm/include/llvm/Support/Options.h

-119
This file was deleted.

llvm/lib/Support/CMakeLists.txt

-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ add_llvm_library(LLVMSupport
116116
MD5.cpp
117117
NativeFormatting.cpp
118118
Optional.cpp
119-
Options.cpp
120119
Parallel.cpp
121120
PluginLoader.cpp
122121
PrettyStackTrace.cpp

llvm/lib/Support/DebugCounter.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
#include "llvm/Support/CommandLine.h"
33
#include "llvm/Support/Format.h"
44
#include "llvm/Support/ManagedStatic.h"
5-
#include "llvm/Support/Options.h"
65

76
using namespace llvm;
87

llvm/lib/Support/Options.cpp

-32
This file was deleted.

llvm/lib/Support/Signals.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@
1515
#include "llvm/ADT/STLExtras.h"
1616
#include "llvm/ADT/StringRef.h"
1717
#include "llvm/Config/llvm-config.h"
18+
#include "llvm/Support/CommandLine.h"
1819
#include "llvm/Support/ErrorOr.h"
1920
#include "llvm/Support/FileSystem.h"
2021
#include "llvm/Support/FileUtilities.h"
2122
#include "llvm/Support/Format.h"
22-
#include "llvm/Support/FormatVariadic.h"
2323
#include "llvm/Support/FormatAdapters.h"
24+
#include "llvm/Support/FormatVariadic.h"
2425
#include "llvm/Support/ManagedStatic.h"
2526
#include "llvm/Support/MemoryBuffer.h"
2627
#include "llvm/Support/Mutex.h"
2728
#include "llvm/Support/Program.h"
2829
#include "llvm/Support/StringSaver.h"
2930
#include "llvm/Support/raw_ostream.h"
30-
#include "llvm/Support/Options.h"
3131
#include <vector>
3232

3333
//===----------------------------------------------------------------------===//

llvm/lib/Transforms/Scalar/Scalarizer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
#include "llvm/InitializePasses.h"
3939
#include "llvm/Pass.h"
4040
#include "llvm/Support/Casting.h"
41+
#include "llvm/Support/CommandLine.h"
4142
#include "llvm/Support/MathExtras.h"
42-
#include "llvm/Support/Options.h"
4343
#include "llvm/Transforms/Scalar.h"
4444
#include <cassert>
4545
#include <cstdint>

0 commit comments

Comments
 (0)