summaryrefslogtreecommitdiff
path: root/docs/HowToSubmitABug.html
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2007-07-06 22:07:22 +0000
committerGabor Greif <ggreif@gmail.com>2007-07-06 22:07:22 +0000
commit04367bfc20c021c4105abf0c33b86d55f782d1e8 (patch)
tree4cb65ce2b61535ce8b294cabbbfa0e80d30c5dfc /docs/HowToSubmitABug.html
parent05c1dc64936c196d7242567e85710b26e8696336 (diff)
downloadllvm-04367bfc20c021c4105abf0c33b86d55f782d1e8.tar.gz
llvm-04367bfc20c021c4105abf0c33b86d55f782d1e8.tar.bz2
llvm-04367bfc20c021c4105abf0c33b86d55f782d1e8.tar.xz
first pass of nomenclature changes in .html files
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37956 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/HowToSubmitABug.html')
-rw-r--r--docs/HowToSubmitABug.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/HowToSubmitABug.html b/docs/HowToSubmitABug.html
index 26cb58c094..dca518426e 100644
--- a/docs/HowToSubmitABug.html
+++ b/docs/HowToSubmitABug.html
@@ -242,7 +242,7 @@ JIT, or LLC) and optionally a series of LLVM passes to run. For example:</p>
</div>
<p><tt>bugpoint</tt> will try to narrow down your list of passes to the one pass
-that causes an error, and simplify the bytecode file as much as it can to assist
+that causes an error, and simplify the bitcode file as much as it can to assist
you. It will print a message letting you know how to reproduce the resulting
error.</p>
@@ -268,7 +268,7 @@ Backend, and then link in the shared object it generates.</p>
<div class="doc_code">
<pre>
-bugpoint -run-jit -output=[correct output file] [bytecode file] \
+bugpoint -run-jit -output=[correct output file] [bitcode file] \
--tool-args -- [arguments to pass to lli] \
--args -- [program arguments]
</pre>
@@ -278,7 +278,7 @@ bugpoint -run-jit -output=[correct output file] [bytecode file] \
<div class="doc_code">
<pre>
-bugpoint -run-llc -output=[correct output file] [bytecode file] \
+bugpoint -run-llc -output=[correct output file] [bitcode file] \
--tool-args -- [arguments to pass to llc] \
--args -- [program arguments]
</pre>
@@ -297,7 +297,7 @@ make bugpoint-jit
</div>
<p>At the end of a successful <tt>bugpoint</tt> run, you will be presented
-with two bytecode files: a <em>safe</em> file which can be compiled with the C
+with two bitcode files: a <em>safe</em> file which can be compiled with the C
backend and the <em>test</em> file which either LLC or the JIT
mis-codegenerates, and thus causes the error.</p>
@@ -306,7 +306,7 @@ the following:</p>
<ol>
-<li><p>Regenerate the shared object from the safe bytecode file:</p>
+<li><p>Regenerate the shared object from the safe bitcode file:</p>
<div class="doc_code">
<p><tt>
@@ -315,7 +315,7 @@ the following:</p>
</tt></p>
</div></li>
-<li><p>If debugging LLC, compile test bytecode native and link with the shared
+<li><p>If debugging LLC, compile test bitcode native and link with the shared
object:</p>
<div class="doc_code">
@@ -327,7 +327,7 @@ the following:</p>
</div></li>
<li><p>If debugging the JIT, load the shared object and supply the test
- bytecode:</p>
+ bitcode:</p>
<div class="doc_code">
<p><tt><b>lli</b> -load=safe.so test.bc [program options]</tt></p>