[llvm-commits] CVS: llvm/tools/llvm-ar/llvm-ar.cpp
Misha Brukman
brukman at cs.uiuc.edu
Fri Oct 10 12:57:18 PDT 2003
Changes in directory llvm/tools/llvm-ar:
llvm-ar.cpp updated: 1.3 -> 1.4
---
Log message:
Fix spelling.
---
Diffs of the changes: (+2 -2)
Index: llvm/tools/llvm-ar/llvm-ar.cpp
diff -u llvm/tools/llvm-ar/llvm-ar.cpp:1.3 llvm/tools/llvm-ar/llvm-ar.cpp:1.4
--- llvm/tools/llvm-ar/llvm-ar.cpp:1.3 Tue Sep 23 12:27:02 2003
+++ llvm/tools/llvm-ar/llvm-ar.cpp Fri Oct 10 12:55:59 2003
@@ -90,7 +90,7 @@
// 1) Generate the header for the symbol table. This is a normal
// archive member header, but it has a zero length name.
// 2) For each archive member file, stat the file and parse the bytecode
-// Store cummulative offset (file size + header size).
+// Store cumulative offset (file size + header size).
// 3) Loop over all the symbols for the current member file,
// add offset entry to offset vector, and add symbol name to its vector.
// Note: The symbol name vector is a vector of chars to speed up calculating
@@ -206,7 +206,7 @@
//Adjustment to offset to start files on even byte boundaries
unsigned adjust = 0;
- //Update offsets write symbol tabel to archive.
+ //Update offsets write symbol table to archive.
for(unsigned i=0; i<offsets.size(); ++i) {
char output[4];
offsets[i] = offsets[i] + symbolTableSize + SARMAG;
More information about the llvm-commits
mailing list