[llvm-commits] CVS: llvm-www/releases/1.1/docs/CodingStandards.html LangRef.html

Tanya Brethour tbrethou at cs.uiuc.edu
Mon Jun 21 22:37:01 PDT 2004


Changes in directory llvm-www/releases/1.1/docs:

CodingStandards.html updated: 1.2 -> 1.3
LangRef.html updated: 1.2 -> 1.3

---
Log message:

Fixing more broken links.


---
Diffs of the changes:  (+9 -9)

Index: llvm-www/releases/1.1/docs/CodingStandards.html
diff -u llvm-www/releases/1.1/docs/CodingStandards.html:1.2 llvm-www/releases/1.1/docs/CodingStandards.html:1.3
--- llvm-www/releases/1.1/docs/CodingStandards.html:1.2	Wed Dec 17 16:47:16 2003
+++ llvm-www/releases/1.1/docs/CodingStandards.html	Mon Jun 21 22:29:14 2004
@@ -204,7 +204,7 @@
 
 <p>Immediately after the <a href="#scf_commenting">header file comment</a> (and
 include guards if working on a header file), the <a
-href="hl_dontinclude">minimal</a> list of #includes required by the file should
+href="#hl_dontinclude">minimal</a> list of #includes required by the file should
 be listed.  We prefer these #includes to be listed in this order:</p>
 
 <ol>
@@ -952,7 +952,7 @@
   <address><a href="mailto:sabre at nondot.org">Chris Lattner</a></address>
   <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a>
   <br>
-  Last modified: $Date: 2003/12/17 22:47:16 $
+  Last modified: $Date: 2004/06/22 03:29:14 $
 </div>
 
 </body>


Index: llvm-www/releases/1.1/docs/LangRef.html
diff -u llvm-www/releases/1.1/docs/LangRef.html:1.2 llvm-www/releases/1.1/docs/LangRef.html:1.3
--- llvm-www/releases/1.1/docs/LangRef.html:1.2	Wed Dec 17 16:47:16 2003
+++ llvm-www/releases/1.1/docs/LangRef.html	Mon Jun 21 22:29:14 2004
@@ -471,7 +471,7 @@
       <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>
@@ -498,7 +498,7 @@
     <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>
@@ -1330,7 +1330,7 @@
 <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>
@@ -1393,8 +1393,8 @@
 <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>long</tt>' values, and <a href="t_struct">structure</a>
+ href="#t_pointer">Pointer</a> and <a href="#t_array">array</a> types
+require '<tt>long</tt>' values, and <a href="#t_struct">structure</a>
 types require '<tt>ubyte</tt>' <b>constants</b>.</p>
 <p>In the example above, the first index is indexing into the '<tt>%ST*</tt>'
 type, which is a pointer, yielding a '<tt>%ST</tt>' = '<tt>{ int,
@@ -1684,7 +1684,7 @@
 <p>The '<tt>llvm.va_copy</tt>' intrinsic works just like the <tt>va_copy</tt>
 macro available in C.  In a target-dependent way, it copies the source <tt>va_list</tt>
 element into the returned list.  This intrinsic is necessary because the <tt><a
- href="i_va_start">llvm.va_start</a></tt> intrinsic may be arbitrarily
+ href="#i_va_start">llvm.va_start</a></tt> intrinsic may be arbitrarily
 complex and require memory allocation, for example.</p>
 </div>
 <!-- *********************************************************************** -->
@@ -1692,6 +1692,6 @@
 <div class="doc_footer">
 <address><a href="mailto:sabre at nondot.org">Chris Lattner</a></address>
 <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a> <br>
-Last modified: $Date: 2003/12/17 22:47:16 $ </div>
+Last modified: $Date: 2004/06/22 03:29:14 $ </div>
 </body>
 </html>





More information about the llvm-commits mailing list