Move the space in overview output for commands out of each of the
[oota-llvm.git] / tools / llvm-dis / llvm-dis.cpp
index 0c87f8ce666ce180010600c9b4d63763b7b15947..27666906e25b5068eae408b33ec78f221efabc8f 100644 (file)
@@ -46,7 +46,7 @@ DontPrint("disable-output", cl::desc("Don't output the .ll file"), cl::Hidden);
 int main(int argc, char **argv) {
   llvm_shutdown_obj X;  // Call llvm_shutdown() on exit.
   try {
-    cl::ParseCommandLineOptions(argc, argv, " llvm .bc -> .ll disassembler\n");
+    cl::ParseCommandLineOptions(argc, argv, "llvm .bc -> .ll disassembler\n");
     sys::PrintStackTraceOnErrorSignal();
 
     std::ostream *Out = &std::cout;  // Default to printing to stdout.