diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-08-10 21:38:47 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-08-10 21:38:47 +0000 |
commit | 23a0c7671d4a995b4b36f00cc1d75e17b187c657 (patch) | |
tree | fd22a86fd50fcc479137d53adea3edfa17038330 /docs | |
parent | 48f706820a047dbeb198eb2c69ef790fc5dbcf69 (diff) | |
download | external_llvm-23a0c7671d4a995b4b36f00cc1d75e17b187c657.zip external_llvm-23a0c7671d4a995b4b36f00cc1d75e17b187c657.tar.gz external_llvm-23a0c7671d4a995b4b36f00cc1d75e17b187c657.tar.bz2 |
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
Diffstat (limited to 'docs')
-rw-r--r-- | docs/GetElementPtr.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/GetElementPtr.html b/docs/GetElementPtr.html index a9905fe..ac91088 100644 --- a/docs/GetElementPtr.html +++ b/docs/GetElementPtr.html @@ -164,7 +164,7 @@ <ul> <li> idx1 = &MyVar + 0</li> <li> idx2 = &MyVar + 4</li> - <li> idx3 = &MyVar = 8</li> + <li> idx3 = &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 |