[llvm-commits] CVS: llvm/lib/Bytecode/Archive/ArchiveWriter.cpp

Reid Spencer reid at x10sys.com
Mon Nov 15 23:05:27 PST 2004



Changes in directory llvm/lib/Bytecode/Archive:

ArchiveWriter.cpp updated: 1.4 -> 1.5
---
Log message:

Fix typeo in comment.


---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/Bytecode/Archive/ArchiveWriter.cpp
diff -u llvm/lib/Bytecode/Archive/ArchiveWriter.cpp:1.4 llvm/lib/Bytecode/Archive/ArchiveWriter.cpp:1.5
--- llvm/lib/Bytecode/Archive/ArchiveWriter.cpp:1.4	Tue Nov 16 00:47:30 2004
+++ llvm/lib/Bytecode/Archive/ArchiveWriter.cpp	Tue Nov 16 01:05:16 2004
@@ -46,7 +46,7 @@
   // search. We split it in half by comparing against 2^14 first. This allows
   // most reasonable values to be done in 2 comparisons instead of 1 for 
   // small ones and four for large ones. We expect this to access file offsets
-  // in the 2^10 to 2^24 range and symbol lengths in the 2^0 to 2^8 rnage, 
+  // in the 2^10 to 2^24 range and symbol lengths in the 2^0 to 2^8 range, 
   // so this approach is reasonable.
   if (num < 1<<14)
     if (num < 1<<7)






More information about the llvm-commits mailing list