mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-05 01:31:36 +00:00
[TableGen] Use 'static' instead of an anonymous namespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238177 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2224f64c6d
commit
ef92f29b75
@ -28,24 +28,22 @@
|
||||
#include <system_error>
|
||||
using namespace llvm;
|
||||
|
||||
namespace {
|
||||
cl::opt<std::string>
|
||||
OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"),
|
||||
cl::init("-"));
|
||||
static cl::opt<std::string>
|
||||
OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"),
|
||||
cl::init("-"));
|
||||
|
||||
cl::opt<std::string>
|
||||
DependFilename("d",
|
||||
cl::desc("Dependency filename"),
|
||||
cl::value_desc("filename"),
|
||||
cl::init(""));
|
||||
static cl::opt<std::string>
|
||||
DependFilename("d",
|
||||
cl::desc("Dependency filename"),
|
||||
cl::value_desc("filename"),
|
||||
cl::init(""));
|
||||
|
||||
cl::opt<std::string>
|
||||
InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
|
||||
static cl::opt<std::string>
|
||||
InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
|
||||
|
||||
cl::list<std::string>
|
||||
IncludeDirs("I", cl::desc("Directory of include files"),
|
||||
cl::value_desc("directory"), cl::Prefix);
|
||||
}
|
||||
static cl::list<std::string>
|
||||
IncludeDirs("I", cl::desc("Directory of include files"),
|
||||
cl::value_desc("directory"), cl::Prefix);
|
||||
|
||||
/// \brief Create a dependency file for `-d` option.
|
||||
///
|
||||
|
Loading…
x
Reference in New Issue
Block a user