[llvm] 9b9327f - llvm-reduce: Add a space to an option's --help
George Burgess IV via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 5 19:46:24 PST 2019
Author: George Burgess IV
Date: 2019-12-05T19:46:16-08:00
New Revision: 9b9327fe3064d5dd4fe054e94be79e14da562685
URL: https://github.com/llvm/llvm-project/commit/9b9327fe3064d5dd4fe054e94be79e14da562685
DIFF: https://github.com/llvm/llvm-project/commit/9b9327fe3064d5dd4fe054e94be79e14da562685.diff
LOG: llvm-reduce: Add a space to an option's --help
Otherwise, we get "filewith".
Added:
Modified:
llvm/tools/llvm-reduce/llvm-reduce.cpp
Removed:
################################################################################
diff --git a/llvm/tools/llvm-reduce/llvm-reduce.cpp b/llvm/tools/llvm-reduce/llvm-reduce.cpp
index 83dcf980a786..036d0ee75305 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
More information about the llvm-commits
mailing list