summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Bytecode/Archive/ArchiveWriter.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-11-16 07:05:16 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-11-16 07:05:16 +0000
commit4c66d89b336e79eccd4d543cf3728b88434bd09a (patch)
tree192fddd58ad25c8c7b623941b5073a3f3072808c /llvm/lib/Bytecode/Archive/ArchiveWriter.cpp
parent7cdcb2b0cbee8d65f43f6da84f2c5d95637b8167 (diff)
downloadbcm5719-llvm-4c66d89b336e79eccd4d543cf3728b88434bd09a.tar.gz
bcm5719-llvm-4c66d89b336e79eccd4d543cf3728b88434bd09a.zip
Fix typeo in comment.
llvm-svn: 17892
Diffstat (limited to 'llvm/lib/Bytecode/Archive/ArchiveWriter.cpp')
-rw-r--r--llvm/lib/Bytecode/Archive/ArchiveWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Archive/ArchiveWriter.cpp b/llvm/lib/Bytecode/Archive/ArchiveWriter.cpp
index e737a040945..636d632b664 100644
--- a/llvm/lib/Bytecode/Archive/ArchiveWriter.cpp
+++ b/llvm/lib/Bytecode/Archive/ArchiveWriter.cpp
@@ -46,7 +46,7 @@ inline unsigned numVbrBytes(unsigned num) {
// 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)
OpenPOWER on IntegriCloud