From bc5cc2e7fa96060e92b7299bcb652a2f88e52936 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 4 Jan 2007 22:01:45 +0000 Subject: [PATCH] Fix broken links, reported by Baptiste Lepilleur llvm-svn: 32882 --- llvm/docs/ProgrammersManual.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/docs/ProgrammersManual.html b/llvm/docs/ProgrammersManual.html index e6653f57a038..ae6f0e1bd765 100644 --- a/llvm/docs/ProgrammersManual.html +++ b/llvm/docs/ProgrammersManual.html @@ -944,7 +944,7 @@ If you look at its definition, it has only a single pointer member.

Frequently, we might have an instance of the Value Class and we want to +href="/doxygen/classllvm_1_1Value.html">Value Class and we want to determine which Users use the Value. The list of all Users of a particular Value is called a def-use chain. For example, let's say we have a Function* named F to a @@ -1225,7 +1225,7 @@ ReplaceInstWithInst(instToReplace->getParent()->getInstList(), ii,

You can use Value::replaceAllUsesWith and User::replaceUsesOfWith to change more than one use at a time. See the -doxygen documentation for the Value Class +doxygen documentation for the Value Class and User Class, respectively, for more information.

@@ -1669,7 +1669,7 @@ the lib/VMCore directory.

#include "llvm/Value.h"
-doxygen info: Value Class

+doxygen info: Value Class

The Value class is the most important class in the LLVM Source base. It represents a typed value that may be used (among other things) as an