Simplify wording: `the bugpoint tool' can just become `bugpoint'.

llvm-svn: 14574
This commit is contained in:
Misha Brukman 2004-07-02 15:36:29 +00:00
parent 2410a8807e
commit 0e21722a9f
1 changed files with 7 additions and 7 deletions

View File

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