aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-08-15 00:45:58 +0000
committerChris Lattner <sabre@nondot.org>2006-08-15 00:45:58 +0000
commit884a9702bba8b8265edab4174a0bdc91825af4af (patch)
treeb6d765746eb3b4e81c843c86f81772cb2b927457
parent33bef484ce90e4fcb4ec5791b94c1c86056f76ad (diff)
Add a link to the GEP faq.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29690 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/LangRef.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 6e339f6616..0cfd533c25 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -101,7 +101,7 @@
<li><a href="#i_vselect">'<tt>vselect</tt>' Instruction</a></li>
</ol>
</li>
- <li><a href="#memoryops">Memory Access Operations</a>
+ <li><a href="#memoryops">Memory Access and Addressing Operations</a>
<ol>
<li><a href="#i_malloc">'<tt>malloc</tt>' Instruction</a></li>
<li><a href="#i_free">'<tt>free</tt>' Instruction</a></li>
@@ -2273,7 +2273,7 @@ it gets its value from the second value argument.
<!-- ======================================================================= -->
<div class="doc_subsection">
- <a name="memoryops">Memory Access Operations</a>
+ <a name="memoryops">Memory Access and Addressing Operations</a>
</div>
<div class="doc_text">
@@ -2574,6 +2574,10 @@ The one exception for this rules is zero length arrays. These arrays are
defined to be accessible as variable length arrays, which requires access
beyond the zero'th element.</p>
+<p>The getelementptr instruction is often confusing. For some more insight
+into how it works, see <a href="GetElementPtr.html">the getelementptr
+FAQ</a>.</p>
+
<h5>Example:</h5>
<pre>