diff options
Diffstat (limited to 'llvm/tools/gccas/gccas.cpp')
| -rw-r--r-- | llvm/tools/gccas/gccas.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/gccas/gccas.cpp b/llvm/tools/gccas/gccas.cpp index c59b6ebe6a4..974e9e26f4b 100644 --- a/llvm/tools/gccas/gccas.cpp +++ b/llvm/tools/gccas/gccas.cpp @@ -25,10 +25,10 @@ using std::cerr; // FIXME: This should eventually be parameterized... static TargetData TD("opt target"); -static cl::opt<string> +static cl::opt<std::string> InputFilename(cl::Positional, cl::desc("<input llvm assembly>"), cl::Required); -static cl::opt<string> +static cl::opt<std::string> OutputFilename("o", cl::desc("Override output filename"), cl::value_desc("filename")); |

