[llvm-commits] CVS: llvm-www/releases/1.0/docs/AliasAnalysis.html ProgrammersManual.html

Tanya Brethour tbrethou at cs.uiuc.edu
Tue Jun 22 03:49:11 PDT 2004


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

AliasAnalysis.html updated: 1.1 -> 1.2
ProgrammersManual.html updated: 1.3 -> 1.4

---
Log message:

Fixed broken links.


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

Index: llvm-www/releases/1.0/docs/AliasAnalysis.html
diff -u llvm-www/releases/1.0/docs/AliasAnalysis.html:1.1 llvm-www/releases/1.0/docs/AliasAnalysis.html:1.2
--- llvm-www/releases/1.0/docs/AliasAnalysis.html:1.1	Fri Oct 24 15:51:39 2003
+++ llvm-www/releases/1.0/docs/AliasAnalysis.html	Tue Jun 22 03:40:42 2004
@@ -66,7 +66,7 @@
 known not to point to the same object.
 </p>
 <p>
-The <a href="/doxygen/classAliasAnalysis.html">AliasAnalysis</a> class is the
+The <a href="/doxygen/classllvm_1_1AliasAnalysis.html">AliasAnalysis</a> class is the
 centerpiece of the LLVM Alias Analysis related infrastructure.  This class is
 the common interface between clients of alias analysis information and the
 implementations providing it.  In addition to simple alias analysis information,
@@ -91,7 +91,7 @@
 
 <div class="doc_text">
 <p>
-The <a href="/doxygen/classAliasAnalysis.html">AliasAnalysis</a> class defines
+The <a href="/doxygen/classllvm_1_1AliasAnalysis.html">AliasAnalysis</a> class defines
 the interface that Alias Analysis implementations should support.  This class
 exports two important enums: <tt>AliasResult</tt> and <tt>ModRefResult</tt>
 which represent the result of an alias query or a mod/ref query,
@@ -290,7 +290,7 @@
 
 <div class="doc_text">
 <p>
-All of the <a href="/doxygen/classAliasAnalysis.html">AliasAnalysis</a> virtual
+All of the <a href="/doxygen/classllvm_1_1AliasAnalysis.html">AliasAnalysis</a> virtual
 methods default to providing conservatively correct information (returning "May"
 Alias and "Mod/Ref" for alias and mod/ref queries respectively).  Depending on
 the capabilities of the analysis you are implementing, you just override the
@@ -368,7 +368,7 @@
 <p>
 Many transformations need information about alias <b>sets</b> that are active in
 some scope, rather than information about pairwise aliasing.  The <tt><a
-href="/doxygen/classAliasSetTracker.html">AliasSetTracker</a></tt> class is used
+href="/doxygen/classllvm_1_1AliasSetTracker.html">AliasSetTracker</a></tt> class is used
 to efficiently build these Alias Sets from the pairwise alias analysis
 information provided by the AliasAnalysis interface.
 </p>
@@ -499,7 +499,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/10/24 20:51:39 $
+Last modified: $Date: 2004/06/22 08:40:42 $
 </font>
 </body>
 </html>


Index: llvm-www/releases/1.0/docs/ProgrammersManual.html
diff -u llvm-www/releases/1.0/docs/ProgrammersManual.html:1.3 llvm-www/releases/1.0/docs/ProgrammersManual.html:1.4
--- llvm-www/releases/1.0/docs/ProgrammersManual.html:1.3	Tue Jun 22 03:01:35 2004
+++ llvm-www/releases/1.0/docs/ProgrammersManual.html	Tue Jun 22 03:40:42 2004
@@ -768,7 +768,7 @@
 </pre>
 
 Alternately, it's common to have an instance of the <a
-href="/doxygen/classUser.html">User Class</a> and need to know what
+href="/doxygen/classllvm_1_1User.html">User Class</a> and need to know what
 <tt>Value</tt>s are used by it.  The list of all <tt>Value</tt>s used
 by a <tt>User</tt> is known as a <i>use-def</i> chain.  Instances of
 class <tt>Instruction</tt> are common <tt>User</tt>s, so we might want
@@ -820,7 +820,7 @@
 allocation of one integer in the current stack frame, at runtime.
 Each <tt>Instruction</tt> subclass is likely to have varying default
 parameters which change the semantics of the instruction, so refer to
-the <a href="/doxygen/classInstruction.html">doxygen documentation for
+the <a href="/doxygen/classllvm_1_1Instruction.html">doxygen documentation for
 the subclass of Instruction</a> that you're interested in
 instantiating.</p>
 
@@ -965,7 +965,7 @@
 <tt>User::replaceUsesOfWith</tt> to change more than one use at a
 time.  See the doxygen documentation for the <a
 href="/doxygen/structllvm_1_1Value.html">Value Class</a> and <a
-href="/doxygen/classUser.html">User Class</a>, respectively, for more
+href="/doxygen/classllvm_1_1User.html">User Class</a>, respectively, for more
 information.
 
 <!-- Value::replaceAllUsesWith User::replaceUsesOfWith Point out:
@@ -1091,7 +1091,7 @@
 </b></font></td></tr></table><ul>
 
 <tt>#include "<a href="/doxygen/User_8h-source.html">llvm/User.h</a>"</tt></b><br>
-doxygen info: <a href="/doxygen/classUser.html">User Class</a><br>
+doxygen info: <a href="/doxygen/classllvm_1_1User.html">User Class</a><br>
 Superclass: <a href="#Value"><tt>Value</tt></a><p>
 
 
@@ -1141,7 +1141,7 @@
 
 <tt>#include "<a
 href="/doxygen/Instruction_8h-source.html">llvm/Instruction.h</a>"</tt></b><br>
-doxygen info: <a href="/doxygen/classInstruction.html">Instruction Class</a><br>
+doxygen info: <a href="/doxygen/classllvm_1_1Instruction.html">Instruction Class</a><br>
 Superclasses: <a href="#User"><tt>User</tt></a>, <a
 href="#Value"><tt>Value</tt></a><p>
 
@@ -1168,7 +1168,7 @@
 href="#BinaryOperator">BinaryOperator</a></tt> and <tt><a
 href="#SetCondInst">SetCondInst</a></tt>).  Unfortunately, the use of macros in
 this file confused doxygen, so these enum values don't show up correctly in the
-<a href="/doxygen/classInstruction.html">doxygen output</a>.<p>
+<a href="/doxygen/classllvm_1_1Instruction.html">doxygen output</a>.<p>
 
 
 <!-- _______________________________________________________________________ -->
@@ -1253,7 +1253,7 @@
 
 <tt>#include "<a
 href="/doxygen/BasicBlock_8h-source.html">llvm/BasicBlock.h</a>"</tt></b><br>
-doxygen info: <a href="/doxygen/classBasicBlock.html">BasicBlock Class</a><br>
+doxygen info: <a href="/doxygen/structllvm_1_1BasicBlock.html">BasicBlock Class</a><br>
 Superclass: <a href="#Value"><tt>Value</tt></a><p>
 
 
@@ -1332,7 +1332,7 @@
 
 <tt>#include "<a
 href="/doxygen/GlobalValue_8h-source.html">llvm/GlobalValue.h</a>"</tt></b><br>
-doxygen info: <a href="/doxygen/classGlobalValue.html">GlobalValue Class</a><br>
+doxygen info: <a href="/doxygen/classllvm_1_1GlobalValue.html">GlobalValue Class</a><br>
 Superclasses: <a href="#User"><tt>User</tt></a>, <a
 href="#Value"><tt>Value</tt></a><p>
 
@@ -1384,7 +1384,7 @@
 
 <tt>#include "<a
 href="/doxygen/Function_8h-source.html">llvm/Function.h</a>"</tt></b><br>
-doxygen info: <a href="/doxygen/classFunction.html">Function Class</a><br>
+doxygen info: <a href="/doxygen/classllvm_1_1Function.html">Function Class</a><br>
 Superclasses: <a href="#GlobalValue"><tt>GlobalValue</tt></a>, <a
 href="#User"><tt>User</tt></a>, <a href="#Value"><tt>Value</tt></a><p>
 
@@ -1555,7 +1555,7 @@
 
 <tt>#include "<a
 href="/doxygen/Module_8h-source.html">llvm/Module.h</a>"</tt></b><br>
-doxygen info: <a href="/doxygen/classModule.html">Module Class</a><p>
+doxygen info: <a href="/doxygen/classllvm_1_1Module.html">Module Class</a><p>
 
 The <tt>Module</tt> class represents the top level structure present in LLVM
 programs.  An LLVM module is effectively either a translation unit of the





More information about the llvm-commits mailing list