From e12e5f3a817c46d9747c00268e7455111c22cadf Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Wed, 17 Dec 2003 23:10:49 +0000 Subject: [PATCH] Fix the links to match our 'llvm' namespace in doxygen-generated docs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10504 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/AliasAnalysis.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/AliasAnalysis.html b/docs/AliasAnalysis.html index 1e62e78b3df..a95df992f97 100644 --- a/docs/AliasAnalysis.html +++ b/docs/AliasAnalysis.html @@ -65,7 +65,7 @@ href="#MustNoMay">Must, May, or No alias response, indicating that two pointers do point to the same object, might point to the same object, or are known not to point to the same object.

-

The AliasAnalysis class is the +

The AliasAnalysis 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, @@ -89,7 +89,7 @@ know.

-

The AliasAnalysis class +

The AliasAnalysis class defines the interface that Alias Analysis implementations should support. This class exports two important enums: AliasResult and ModRefResult which represent the result of an alias query or a mod/ref @@ -277,7 +277,7 @@ a BasicBlockPass, or InitializeAliasAnalysis for an

-

All of the AliasAnalysis +

All of the AliasAnalysis 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 @@ -355,7 +355,7 @@ to do anything special to handle load instructions: just use the

Many transformations need information about alias sets that are active in some scope, rather than information about pairwise aliasing. The AliasSetTracker class is used +href="/doxygen/classllvm_1_1AliasSetTracker.html">AliasSetTracker class is used to efficiently build these Alias Sets from the pairwise alias analysis information provided by the AliasAnalysis interface.