1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

Fix a typo noticed by Gordon Henriksen. Thanks!

llvm-svn: 29597
This commit is contained in:
Reid Spencer 2006-08-10 21:38:47 +00:00
parent 0f80d9e432
commit 2cc0b2ef67

View File

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