diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-08-15 08:14:19 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-08-15 08:14:19 +0000 |
commit | e3c312fc89f7c31b05391b079c6eafd8e13a3991 (patch) | |
tree | 7dcde7f756f2b43c0d367ae0ca445f7247e526d4 /docs/GetElementPtr.html | |
parent | eda573ddf988b34799e4ac76779ed63a570454e0 (diff) | |
download | external_llvm-e3c312fc89f7c31b05391b079c6eafd8e13a3991.zip external_llvm-e3c312fc89f7c31b05391b079c6eafd8e13a3991.tar.gz external_llvm-e3c312fc89f7c31b05391b079c6eafd8e13a3991.tar.bz2 |
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29700 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/GetElementPtr.html')
-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 08d8006..dc57087 100644 --- a/docs/GetElementPtr.html +++ b/docs/GetElementPtr.html @@ -81,7 +81,7 @@ <p>it is natural to think that there is only one index, the selection of the field <tt>F</tt>. However, in this example, <tt>Foo</tt> is a pointer. That pointer must be indexed explicitly in LLVM. C, on the other hand, indexs - through it ransparently. To arrive at the same address location as the C + through it transparently. To arrive at the same address location as the C code, you would provide the GEP instruction with two index operands. The first operand indexes through the pointer; the second operand indexes the field <tt>F</tt> of the structure, just as if you wrote:</p> |