summaryrefslogtreecommitdiff
path: root/docs/Bugpoint.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-10-15 17:04:28 +0000
committerChris Lattner <sabre@nondot.org>2004-10-15 17:04:28 +0000
commit9500a6ec2e58b01bd9a67e13b1f22cf62b5096d7 (patch)
treeebfd3bc605298c9e7f267881a42b7cff2366e308 /docs/Bugpoint.html
parent358a9027a8199db9296e6e991f5ae513953a30f0 (diff)
downloadllvm-9500a6ec2e58b01bd9a67e13b1f22cf62b5096d7.tar.gz
llvm-9500a6ec2e58b01bd9a67e13b1f22cf62b5096d7.tar.bz2
llvm-9500a6ec2e58b01bd9a67e13b1f22cf62b5096d7.tar.xz
Fix broken links
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17016 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/Bugpoint.html')
-rw-r--r--docs/Bugpoint.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/Bugpoint.html b/docs/Bugpoint.html
index 0fc16b710a..19dd0ea3c3 100644
--- a/docs/Bugpoint.html
+++ b/docs/Bugpoint.html
@@ -20,7 +20,7 @@ problems in LLVM tools and passes. It can be used to debug three types of
failures: optimizer crashes, miscompilations by optimizers, or bad native
code generation (including problems in the static and JIT compilers). It aims
to reduce large test cases to small, useful ones. For example,
-if <tt><a href="CommandGuide/gccas.html">gccas</a></tt> crashes while optimizing a file, it
+if <tt><a href="CommandGuide/html/gccas.html">gccas</a></tt> crashes while optimizing a file, it
will identify the optimization (or combination of optimizations) that causes the
crash, and reduce the file down to a small example which triggers the crash.<p>
@@ -84,8 +84,8 @@ flow graph, to reduce the size of the function as much as possible. Finally,
<tt>bugpoint</tt> deletes any individual LLVM instructions whose absence does
not eliminate the failure. At the end, <tt>bugpoint</tt> should tell you what
passes crash, give you a bytecode file, and give you instructions on how to
-reproduce the failure with <tt><a href="CommandGuide/opt.html">opt</a></tt>, <tt><a
-href="CommandGuide/analyze.html">analyze</a></tt>, or <tt><a href="CommandGuide/llc.html">llc</a></tt>.<p>
+reproduce the failure with <tt><a href="CommandGuide/html/opt.html">opt</a></tt>, <tt><a
+href="CommandGuide/html/analyze.html">analyze</a></tt>, or <tt><a href="CommandGuide/html/llc.html">llc</a></tt>.<p>
<a name="codegendebug">
<h4>Code generator debugger</h4>