diff options
Diffstat (limited to 'tools/llvm-extract/llvm-extract.cpp')
-rw-r--r-- | tools/llvm-extract/llvm-extract.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/llvm-extract/llvm-extract.cpp b/tools/llvm-extract/llvm-extract.cpp index 5c71264d54..93e5fc1b11 100644 --- a/tools/llvm-extract/llvm-extract.cpp +++ b/tools/llvm-extract/llvm-extract.cpp @@ -17,13 +17,13 @@ #include <memory> // InputFilename - The filename to read from. -static cl::opt<string> +static cl::opt<std::string> InputFilename(cl::Positional, cl::desc("<input bytecode file>"), cl::init("-"), cl::value_desc("filename")); // ExtractFunc - The function to extract from the module... defaults to main. -static cl::opt<string> +static cl::opt<std::string> ExtractFunc("func", cl::desc("Specify function to extract"), cl::init("main"), cl::value_desc("function")); |