aboutsummaryrefslogtreecommitdiffstats
path: root/docs/CommandGuide
diff options
context:
space:
mode:
authorPete Cooper <peter_cooper@apple.com>2012-05-07 22:42:40 +0000
committerPete Cooper <peter_cooper@apple.com>2012-05-07 22:42:40 +0000
commit7e56e92a33be7cc21a279e2fc6bd0e43833b1f18 (patch)
tree1c2ea782f1db8ae8b22e3d0178ffab4484d52202 /docs/CommandGuide
parent397fc4874efe9c17e737d4c5c50bd19dc3bf27f5 (diff)
downloadexternal_llvm-7e56e92a33be7cc21a279e2fc6bd0e43833b1f18.zip
external_llvm-7e56e92a33be7cc21a279e2fc6bd0e43833b1f18.tar.gz
external_llvm-7e56e92a33be7cc21a279e2fc6bd0e43833b1f18.tar.bz2
Remove C Backend from the bugpoint docs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156333 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide')
-rw-r--r--docs/CommandGuide/bugpoint.pod16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/CommandGuide/bugpoint.pod b/docs/CommandGuide/bugpoint.pod
index 31db62f..f7a3ec7 100644
--- a/docs/CommandGuide/bugpoint.pod
+++ b/docs/CommandGuide/bugpoint.pod
@@ -123,23 +123,23 @@ by compiling the program with the "safe" backend and running it.
Profile file loaded by B<--profile-loader>.
-=item B<--run-{int,jit,llc,cbe,custom}>
+=item B<--run-{int,jit,llc,custom}>
Whenever the test program is compiled, B<bugpoint> should generate code for it
using the specified code generator. These options allow you to choose the
-interpreter, the JIT compiler, the static native code compiler, the C
-backend, or a custom command (see B<--exec-command>) respectively.
+interpreter, the JIT compiler, the static native code compiler, or a
+custom command (see B<--exec-command>) respectively.
-=item B<--safe-{llc,cbe,custom}>
+=item B<--safe-{llc,custom}>
When debugging a code generator, B<bugpoint> should use the specified code
generator as the "safe" code generator. This is a known-good code generator
used to generate the "reference output" if it has not been provided, and to
compile portions of the program that as they are excluded from the testcase.
These options allow you to choose the
-static native code compiler, the C backend, or a custom command,
-(see B<--exec-command>) respectively. The interpreter and the JIT backends
-cannot currently be used as the "safe" backends.
+static native code compiler, or a custom command, (see B<--exec-command>)
+respectively. The interpreter and the JIT backends cannot currently
+be used as the "safe" backends.
=item B<--exec-command> I<command>
@@ -165,7 +165,7 @@ will be the minimum bitcode that passes FileCheck.
=item B<--safe-path> I<path>
This option defines the path to the command to execute with the
-B<--safe-{int,jit,llc,cbe,custom}>
+B<--safe-{int,jit,llc,custom}>
option.
=back