diff options
author | Ted Kremenek <kremenek@apple.com> | 2007-12-19 19:50:41 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2007-12-19 19:50:41 +0000 |
commit | 50b5641e1ba42ae6b542b3044b6bb268e793602c (patch) | |
tree | c56fff68a04f086d41c5c91b7b53eef728ad1c19 /Driver/clang.cpp | |
parent | ccc7647b129f284e0344876eaee7c8ce27e96024 (diff) |
Cleaned up "-o" option to print "-o=<path>" instead of "-o=<string>" when
doing clang --help.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45215 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Driver/clang.cpp')
-rw-r--r-- | Driver/clang.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Driver/clang.cpp b/Driver/clang.cpp index 9727e11135..259339c8c5 100644 --- a/Driver/clang.cpp +++ b/Driver/clang.cpp @@ -119,6 +119,7 @@ ProgAction(llvm::cl::desc("Choose output type:"), llvm::cl::ZeroOrMore, static llvm::cl::opt<std::string> OutputFile("o", + llvm::cl::value_desc("path"), llvm::cl::desc("Specify output file (for --serialize, this is a directory)")); static llvm::cl::opt<bool> |