summaryrefslogtreecommitdiff
path: root/docs/SourceLevelDebugging.rst
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-03-18 20:21:47 +0000
committerEric Christopher <echristo@gmail.com>2013-03-18 20:21:47 +0000
commitafa288de507fb39105e59b0557a25b32ae366637 (patch)
tree12f9c02bc826cddb315201d32a5cf2e2c344bb94 /docs/SourceLevelDebugging.rst
parente04b6c648c07b4523fa73b46cf253fd97135aa98 (diff)
downloadllvm-afa288de507fb39105e59b0557a25b32ae366637.tar.gz
llvm-afa288de507fb39105e59b0557a25b32ae366637.tar.bz2
llvm-afa288de507fb39105e59b0557a25b32ae366637.tar.xz
Make the fields in the diagram match the descriptive text above them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177314 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/SourceLevelDebugging.rst')
-rw-r--r--docs/SourceLevelDebugging.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/SourceLevelDebugging.rst b/docs/SourceLevelDebugging.rst
index 78ce4e0e53..16fa7f0b7e 100644
--- a/docs/SourceLevelDebugging.rst
+++ b/docs/SourceLevelDebugging.rst
@@ -1811,11 +1811,11 @@ values, we can clarify the contents of the ``BUCKETS``, ``HASHES`` and
| HEADER.header_data_len | uint32_t
| HEADER_DATA | HeaderData
|-------------------------|
- | BUCKETS | uint32_t[bucket_count] // 32 bit hash indexes
+ | BUCKETS | uint32_t[n_buckets] // 32 bit hash indexes
|-------------------------|
- | HASHES | uint32_t[hashes_count] // 32 bit hash values
+ | HASHES | uint32_t[n_hashes] // 32 bit hash values
|-------------------------|
- | OFFSETS | uint32_t[hashes_count] // 32 bit offsets to hash value data
+ | OFFSETS | uint32_t[n_hashes] // 32 bit offsets to hash value data
|-------------------------|
| ALL HASH DATA |
`-------------------------'