diff options
author | Eric Christopher <echristo@gmail.com> | 2012-10-08 23:53:45 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2012-10-08 23:53:45 +0000 |
commit | 2d65efed5357ff1768e0462feffc910809ed1b62 (patch) | |
tree | 803ab1906a0117055c5ba7f0ced082def01f13b4 | |
parent | 408aad5031d1877fe73959b7b66549ab6fe9b09e (diff) | |
download | external_llvm-2d65efed5357ff1768e0462feffc910809ed1b62.zip external_llvm-2d65efed5357ff1768e0462feffc910809ed1b62.tar.gz external_llvm-2d65efed5357ff1768e0462feffc910809ed1b62.tar.bz2 |
Fix up comment to be more clear.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165463 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp b/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp index 454a923..05e0f2f 100644 --- a/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp @@ -133,8 +133,8 @@ void DwarfAccelTable::EmitHeader(AsmPrinter *Asm) { } } -// Walk through and emit the buckets for the table. This will look -// like a list of numbers of how many elements are in each bucket. +// Walk through and emit the buckets for the table. Each index is +// an offset into the list of hashes. void DwarfAccelTable::EmitBuckets(AsmPrinter *Asm) { unsigned index = 0; for (size_t i = 0, e = Buckets.size(); i < e; ++i) { |