diff options
author | George Burgess IV <george.burgess.iv@gmail.com> | 2019-12-05 19:42:33 -0800 |
---|---|---|
committer | George Burgess IV <george.burgess.iv@gmail.com> | 2019-12-05 19:46:16 -0800 |
commit | 9b9327fe3064d5dd4fe054e94be79e14da562685 (patch) | |
tree | d5c2acc1b1bd80b442967eaff900bd22c309aac3 /llvm/tools/llvm-reduce | |
parent | 381d3c5c45c55c00f8d561eaff03b460953ca5c0 (diff) | |
download | bcm5719-llvm-9b9327fe3064d5dd4fe054e94be79e14da562685.tar.gz bcm5719-llvm-9b9327fe3064d5dd4fe054e94be79e14da562685.zip |
llvm-reduce: Add a space to an option's --help
Otherwise, we get "filewith".
Diffstat (limited to 'llvm/tools/llvm-reduce')
-rw-r--r-- | llvm/tools/llvm-reduce/llvm-reduce.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-reduce/llvm-reduce.cpp b/llvm/tools/llvm-reduce/llvm-reduce.cpp index 83dcf980a78..036d0ee7530 100644 --- a/llvm/tools/llvm-reduce/llvm-reduce.cpp +++ b/llvm/tools/llvm-reduce/llvm-reduce.cpp @@ -50,7 +50,7 @@ static cl::alias OutputFileAlias("o", cl::desc("Alias for -output"), static cl::opt<bool> ReplaceInput("in-place", - cl::desc("WARNING: This option will replace your input file" + cl::desc("WARNING: This option will replace your input file " "with the reduced version!")); // Parses IR into a Module and verifies it |