summaryrefslogtreecommitdiffstats
path: root/llvm/docs/GettingStartedVS.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
commita54634adeffe67b31ccf8537c305c5235bf94ca0 (patch)
tree7bb3069907771cfe86b9e33ff443e1e811116d0f /llvm/docs/GettingStartedVS.html
parent12358b482788c1735fe6bbe2bff63015c6b43696 (diff)
downloadbcm5719-llvm-a54634adeffe67b31ccf8537c305c5235bf94ca0.tar.gz
bcm5719-llvm-a54634adeffe67b31ccf8537c305c5235bf94ca0.zip
first pass of nomenclature changes in .html files
llvm-svn: 37956
Diffstat (limited to 'llvm/docs/GettingStartedVS.html')
-rw-r--r--llvm/docs/GettingStartedVS.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/GettingStartedVS.html b/llvm/docs/GettingStartedVS.html
index 9526af57b47..90a30bb040e 100644
--- a/llvm/docs/GettingStartedVS.html
+++ b/llvm/docs/GettingStartedVS.html
@@ -57,7 +57,7 @@
<p>To emphasize, there is no C/C++ front end currently available.
<tt>llvm-gcc</tt> is based on GCC, which cannot be bootstrapped using VC++.
Eventually there should be a <tt>llvm-gcc</tt> based on Cygwin or MinGW that
- is usable. There is also the option of generating bytecode files on Unix and
+ is usable. There is also the option of generating bitcode files on Unix and
copying them over to Windows. But be aware the odds of linking C++ code
compiled with <tt>llvm-gcc</tt> with code compiled with VC++ is essentially
zero.</p>
@@ -257,11 +257,11 @@ All these paths are absolute:</p>
}
</pre></li>
- <li><p>Next, compile the C file into a LLVM bytecode file:</p>
+ <li><p>Next, compile the C file into a LLVM bitcode file:</p>
<p><tt>% llvm-gcc -c hello.c -emit-llvm -o hello.bc</tt></p>
<p>This will create the result file <tt>hello.bc</tt> which is the LLVM
- bytecode that corresponds the the compiled program and the library
+ bitcode that corresponds the the compiled program and the library
facilities that it required. You can execute this file directly using
<tt>lli</tt> tool, compile it to native assembly with the <tt>llc</tt>,
optimize or analyze it further with the <tt>opt</tt> tool, etc.</p>
OpenPOWER on IntegriCloud