[llvm-commits] CVS: llvm/tools/llvm-dis/llvm-dis.cpp
Misha Brukman
brukman at cs.uiuc.edu
Thu Apr 21 17:00:19 PDT 2005
Changes in directory llvm/tools/llvm-dis:
llvm-dis.cpp updated: 1.50 -> 1.51
---
Log message:
Remove trailing whitespace
---
Diffs of the changes: (+4 -4)
llvm-dis.cpp | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
Index: llvm/tools/llvm-dis/llvm-dis.cpp
diff -u llvm/tools/llvm-dis/llvm-dis.cpp:1.50 llvm/tools/llvm-dis/llvm-dis.cpp:1.51
--- llvm/tools/llvm-dis/llvm-dis.cpp:1.50 Sat Jan 29 11:29:05 2005
+++ llvm/tools/llvm-dis/llvm-dis.cpp Thu Apr 21 18:59:37 2005
@@ -1,10 +1,10 @@
//===-- llvm-dis.cpp - The low-level LLVM disassembler --------------------===//
-//
+//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
-//
+//
//===----------------------------------------------------------------------===//
//
// This utility may be invoked in the following manner:
@@ -31,7 +31,7 @@
InputFilename(cl::Positional, cl::desc("<input bytecode>"), cl::init("-"));
static cl::opt<std::string>
-OutputFilename("o", cl::desc("Override output filename"),
+OutputFilename("o", cl::desc("Override output filename"),
cl::value_desc("filename"));
static cl::opt<bool>
@@ -54,7 +54,7 @@
std::cerr << "bytecode didn't read correctly.\n";
return 1;
}
-
+
if (OutputFilename != "") { // Specified an output filename?
if (OutputFilename != "-") { // Not stdout?
if (!Force && std::ifstream(OutputFilename.c_str())) {
More information about the llvm-commits
mailing list