From 18ab2b91ff2526ec899b564f53a082a63770539c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 14 Oct 2003 20:58:07 +0000 Subject: [PATCH] The -mode option is no longer git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9117 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/HowToSubmitABug.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/HowToSubmitABug.html b/docs/HowToSubmitABug.html index f98e2026fc3..9d6c6e5f8f0 100644 --- a/docs/HowToSubmitABug.html +++ b/docs/HowToSubmitABug.html @@ -197,7 +197,7 @@ output through, e.g. C backend, the JIT, or LLC, and a selection of passes, one of which may be causing the error, and run, for example:
-  bugpoint -run-cbe -mode=compile [... optimization passes ...] file-to-test.bc
+  bugpoint -run-cbe [... optimization passes ...] file-to-test.bc
 
bugpoint will try to narrow down your list of passes to the one pass @@ -222,12 +222,12 @@ Backend, and then link in the shared object it generates.

To debug the JIT:

-  bugpoint -run-jit -mode=codegen -output=[correct output file] [bytecodefile]
+  bugpoint -run-jit -output=[correct output file] [bytecodefile]
 
Similarly, to debug the LLC, one would run:
-  bugpoint -run-llc -mode=codegen -output=[correct output file] [bytecodefile]
+  bugpoint -run-llc -output=[correct output file] [bytecodefile]
 
At the end of a successful bugpoint run, you will be presented @@ -265,6 +265,6 @@ following:
Chris Lattner
-Last modified: Wed Sep 17 13:49:15 CDT 2003 +Last modified: Tue Oct 14 15:57:47 CDT 2003 -- 2.11.0