From 3397bb248fcd0425e1c6f15d7aff7bd6c95f122d Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 21 Sep 2012 18:41:30 +0000 Subject: [PATCH] Say "bytes" instead of "address units", since that's what the rest of LangRef uses. llvm-svn: 164402 --- llvm/docs/LangRef.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index 1fea299..89b9227 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -3069,8 +3069,8 @@ are padding and what the TBAA tags of the struct are.

The current metadata format is very simple. !tbaa.struct 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.:

@@ -3079,9 +3079,9 @@ are padding and what the TBAA tags of the struct are.

-

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.

+

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.

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 -- 2.7.4