summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2012-09-21 18:41:30 +0000
committerDan Gohman <gohman@apple.com>2012-09-21 18:41:30 +0000
commitee9f726749c5b1622294718925639d2a4aa92e28 (patch)
tree3ae965548fb5657836e11e5b432b49569f69aab3 /docs
parent273a92eb0a88f77d3147d53b3d490d423751fb42 (diff)
downloadllvm-ee9f726749c5b1622294718925639d2a4aa92e28.tar.gz
llvm-ee9f726749c5b1622294718925639d2a4aa92e28.tar.bz2
llvm-ee9f726749c5b1622294718925639d2a4aa92e28.tar.xz
Say "bytes" instead of "address units", since that's what the
rest of LangRef uses. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164402 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 1fea29950b..89b9227b72 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -3069,8 +3069,8 @@ are padding and what the TBAA tags of the struct are.</p>
<p>The current metadata format is very simple. <tt>!tbaa.struct</tt> metadata nodes
are a list of operands which are in conceptual groups of three. For each
- group of three, the first operand gives the byte offset of a field in address
- units, the second gives its size in address units, and the third gives its
+ group of three, the first operand gives the byte offset of a field in bytes,
+ the second gives its size in bytes, and the third gives its
tbaa tag. e.g.:</p>
<div class="doc_code">
@@ -3079,9 +3079,9 @@ are padding and what the TBAA tags of the struct are.</p>
</pre>
</div>
-<p>This describes a struct with two fields. The first is at offset 0 address units
- with size 4 address units, and has tbaa tag !1. The second is at offset 8 address
- units and has size 4 address units and has tbaa tag !2.</p>
+<p>This describes a struct with two fields. The first is at offset 0 bytes
+ with size 4 bytes, and has tbaa tag !1. The second is at offset 8 bytes
+ and has size 4 bytes and has tbaa tag !2.</p>
<p>Note that the fields need not be contiguous. In this example, there is a
4 byte gap between the two fields. This gap represents padding which