[llvm-commits] CVS: llvm/tools/llvm-ranlib/llvm-ranlib.cpp
Misha Brukman
brukman at cs.uiuc.edu
Thu Apr 21 16:59:55 PDT 2005
Changes in directory llvm/tools/llvm-ranlib:
llvm-ranlib.cpp updated: 1.5 -> 1.6
---
Log message:
Remove trailing whitespace
---
Diffs of the changes: (+6 -6)
llvm-ranlib.cpp | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
Index: llvm/tools/llvm-ranlib/llvm-ranlib.cpp
diff -u llvm/tools/llvm-ranlib/llvm-ranlib.cpp:1.5 llvm/tools/llvm-ranlib/llvm-ranlib.cpp:1.6
--- llvm/tools/llvm-ranlib/llvm-ranlib.cpp:1.5 Sun Feb 13 01:34:17 2005
+++ llvm/tools/llvm-ranlib/llvm-ranlib.cpp Thu Apr 21 18:59:44 2005
@@ -1,10 +1,10 @@
//===-- llvm-ranlib.cpp - LLVM archive index generator --------------------===//
-//
+//
// The LLVM Compiler Infrastructure
//
-// This file was developed by Reid Spencer and is distributed under the
+// This file was developed by Reid Spencer and is distributed under the
// University of Illinois Open Source License. See LICENSE.TXT for details.
-//
+//
//===----------------------------------------------------------------------===//
//
// Adds or updates an index (symbol table) for an LLVM archive file.
@@ -21,7 +21,7 @@
using namespace llvm;
// llvm-ar operation code and modifier flags
-static cl::opt<std::string>
+static cl::opt<std::string>
ArchiveName(cl::Positional, cl::Optional, cl::desc("<archive-file>"));
static cl::opt<bool>
@@ -32,7 +32,7 @@
void printSymbolTable(Archive* TheArchive) {
std::cout << "\nArchive Symbol Table:\n";
const Archive::SymTabType& symtab = TheArchive->getSymbolTable();
- for (Archive::SymTabType::const_iterator I=symtab.begin(), E=symtab.end();
+ for (Archive::SymTabType::const_iterator I=symtab.begin(), E=symtab.end();
I != E; ++I ) {
unsigned offset = TheArchive->getFirstFileOffset() + I->second;
std::cout << " " << std::setw(9) << offset << "\t" << I->first <<"\n";
@@ -67,7 +67,7 @@
throw std::string("Archive file does not exist");
std::string err_msg;
- std::auto_ptr<Archive>
+ std::auto_ptr<Archive>
AutoArchive(Archive::OpenAndLoad(ArchivePath,&err_msg));
Archive* TheArchive = AutoArchive.get();
if (!TheArchive)
More information about the llvm-commits
mailing list