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
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