Fix a typo noticed by Gordon Henriksen. Thanks!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29597 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2006-08-10 21:38:47 +00:00
parent 48f706820a
commit 23a0c7671d

View File

@ -164,7 +164,7 @@
<ul>
<li> idx1 = &amp;MyVar + 0</li>
<li> idx2 = &amp;MyVar + 4</li>
<li> idx3 = &amp;MyVar = 8</li>
<li> idx3 = &amp;MyVar + 8</li>
</ul>
<p>Since the type <tt>int</tt> is known to be four bytes long, the indices
0, 1 and 2 translate into memory offsets of 0, 4, and 8, respectively. No