diff options
Diffstat (limited to 'tools/gccas/gccas.cpp')
-rw-r--r-- | tools/gccas/gccas.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp index c59b6eb..974e9e2 100644 --- a/tools/gccas/gccas.cpp +++ b/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")); |