Skip to content

Commit

Permalink
[yaml2obj] Internlize DocNum. NFC
Browse files Browse the repository at this point in the history
  • Loading branch information
MaskRay committed Jan 31, 2020
1 parent 53bb183 commit 84f0a86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions llvm/tools/yaml2obj/yaml2obj.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ using namespace llvm;
static cl::opt<std::string>
Input(cl::Positional, cl::desc("<input>"), cl::init("-"));

cl::opt<unsigned>
DocNum("docnum", cl::init(1),
cl::desc("Read specified document from input (default = 1)"));
static cl::opt<unsigned>
DocNum("docnum", cl::init(1),
cl::desc("Read specified document from input (default = 1)"));

static cl::opt<std::string> OutputFilename("o", cl::desc("Output filename"),
cl::value_desc("filename"));
Expand Down

0 comments on commit 84f0a86

Please sign in to comment.