diff options
author | Chris Lattner <sabre@nondot.org> | 2004-06-03 22:57:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-06-03 22:57:15 +0000 |
commit | e53e508642c5bd95c9dcb64203e18c0c520c77e6 (patch) | |
tree | 8f45e41a325990c2a04086a9f5ffeb5569deea34 /docs/LangRef.html | |
parent | 3bff8f57aeac62dbd42d74bc36b24ffbd191aca2 (diff) | |
download | external_llvm-e53e508642c5bd95c9dcb64203e18c0c520c77e6.zip external_llvm-e53e508642c5bd95c9dcb64203e18c0c520c77e6.tar.gz external_llvm-e53e508642c5bd95c9dcb64203e18c0c520c77e6.tar.bz2 |
Fix some broken links
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13997 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LangRef.html')
-rw-r--r-- | docs/LangRef.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 07bb686..3421b3d 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -522,7 +522,7 @@ instruction.</p> <td><tt>{ float, int (int) * }</tt></td> <td>: A pair, where the first element is a <tt>float</tt> and the second element is a <a href="#t_pointer">pointer</a> to a <a - href="t_function">function</a> that takes an <tt>int</tt>, returning + href="#t_function">function</a> that takes an <tt>int</tt>, returning an <tt>int</tt>.</td> </tr> </tbody> @@ -549,7 +549,7 @@ of four <tt>int</tt> values</td> <tr> <td><tt>int (int *) *</tt></td> <td>: A <a href="#t_pointer">pointer</a> to a <a - href="t_function">function</a> that takes an <tt>int</tt>, returning + href="#t_function">function</a> that takes an <tt>int</tt>, returning an <tt>int</tt>.</td> </tr> </tbody> @@ -1417,7 +1417,7 @@ Instruction</a> </div> <h5>Arguments:</h5> <p>The argument to the '<tt>load</tt>' instruction specifies the memory address to load from. The pointer must point to a <a - href="t_firstclass">first class</a> type. If the <tt>load</tt> is + href="#t_firstclass">first class</a> type. If the <tt>load</tt> is marked as <tt>volatile</tt> then the optimizer is not allowed to modify the number or order of execution of this <tt>load</tt> with other volatile <tt>load</tt> and <tt><a href="#i_store">store</a></tt> @@ -1519,9 +1519,9 @@ compiled to LLVM:</p> <h5>Semantics:</h5> <p>The index types specified for the '<tt>getelementptr</tt>' instruction depend -on the pointer type that is being index into. <a href="t_pointer">Pointer</a> -and <a href="t_array">array</a> types require <tt>uint</tt>, <tt>int</tt>, -<tt>ulong</tt>, or <tt>long</tt> values, and <a href="t_struct">structure</a> +on the pointer type that is being index into. <a href="#t_pointer">Pointer</a> +and <a href="#t_array">array</a> types require <tt>uint</tt>, <tt>int</tt>, +<tt>ulong</tt>, or <tt>long</tt> values, and <a href="#t_struct">structure</a> types require <tt>uint</tt> <b>constants</b>.</p> <p>In the example above, the first index is indexing into the '<tt>%ST*</tt>' |