aboutsummaryrefslogtreecommitdiff
path: root/docs/CommandGuide/bugpoint.pod
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-07-02 15:36:29 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-07-02 15:36:29 +0000
commit595d32e93b3dacc143ccbe2bcabe60dcf71a3bc3 (patch)
treee7f4e45d320b5b66e6673257c9405bfe348c49e7 /docs/CommandGuide/bugpoint.pod
parentc3e0434102e86bc6e20b543c5d09630fd463ae25 (diff)
Simplify wording: `the bugpoint tool' can just become `bugpoint'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14574 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide/bugpoint.pod')
-rw-r--r--docs/CommandGuide/bugpoint.pod14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/CommandGuide/bugpoint.pod b/docs/CommandGuide/bugpoint.pod
index d3102c7f40..8474a9b08d 100644
--- a/docs/CommandGuide/bugpoint.pod
+++ b/docs/CommandGuide/bugpoint.pod
@@ -11,13 +11,13 @@ I<program arguments> ...
=head1 DESCRIPTION
-The B<bugpoint> tool narrows down the source of 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 B<gccas> 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.
+B<bugpoint> narrows down the source of 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 B<gccas> 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.
=head2 Design Philosophy