diff options
author | Chris Lattner <sabre@nondot.org> | 2007-01-04 22:01:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-01-04 22:01:45 +0000 |
commit | 008151782f866df98a61533f52aeeb27e318544b (patch) | |
tree | beca3f12e116b9ccb98bd65d955f2f878f57a52d /docs | |
parent | 912095becac923ff614d7b07728eb345ada67765 (diff) | |
download | external_llvm-008151782f866df98a61533f52aeeb27e318544b.zip external_llvm-008151782f866df98a61533f52aeeb27e318544b.tar.gz external_llvm-008151782f866df98a61533f52aeeb27e318544b.tar.bz2 |
Fix broken links, reported by Baptiste Lepilleur
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32882 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ProgrammersManual.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index e6653f5..ae6f0e1 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -944,7 +944,7 @@ If you look at its definition, it has only a single pointer member.</p> <div class="doc_text"> <p>Frequently, we might have an instance of the <a -href="/doxygen/structllvm_1_1Value.html">Value Class</a> and we want to +href="/doxygen/classllvm_1_1Value.html">Value Class</a> and we want to determine which <tt>User</tt>s use the <tt>Value</tt>. The list of all <tt>User</tt>s of a particular <tt>Value</tt> is called a <i>def-use</i> chain. For example, let's say we have a <tt>Function*</tt> named <tt>F</tt> to a @@ -1225,7 +1225,7 @@ ReplaceInstWithInst(instToReplace->getParent()->getInstList(), ii, <p>You can use <tt>Value::replaceAllUsesWith</tt> and <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> +doxygen documentation for the <a href="/doxygen/classllvm_1_1Value.html">Value Class</a> and <a href="/doxygen/classllvm_1_1User.html">User Class</a>, respectively, for more information.</p> @@ -1669,7 +1669,7 @@ the <tt>lib/VMCore</tt> directory.</p> <p><tt>#include "<a href="/doxygen/Value_8h-source.html">llvm/Value.h</a>"</tt> <br> -doxygen info: <a href="/doxygen/structllvm_1_1Value.html">Value Class</a></p> +doxygen info: <a href="/doxygen/classllvm_1_1Value.html">Value Class</a></p> <p>The <tt>Value</tt> 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 |