summaryrefslogtreecommitdiffstats
path: root/llvm/docs/ExtendingLLVM.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/ExtendingLLVM.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/ExtendingLLVM.html')
-rw-r--r--llvm/docs/ExtendingLLVM.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/docs/ExtendingLLVM.html b/llvm/docs/ExtendingLLVM.html
index baad89a6ae2..7505c0eee6f 100644
--- a/llvm/docs/ExtendingLLVM.html
+++ b/llvm/docs/ExtendingLLVM.html
@@ -228,7 +228,7 @@ complicated behavior in a single node (rotate).</p>
<div class="doc_text">
-<p><span class="doc_warning">WARNING: adding instructions changes the bytecode
+<p><span class="doc_warning">WARNING: adding instructions changes the bitcode
format, and it will take some effort to maintain compatibility with
the previous version.</span> Only add an instruction if it is absolutely
necessary.</p>
@@ -251,8 +251,8 @@ necessary.</p>
add the grammar on how your instruction can be read and what it will
construct as a result</li>
-<li><tt>llvm/lib/Bytecode/Reader/Reader.cpp</tt>:
- add a case for your instruction and how it will be parsed from bytecode</li>
+<li><tt>llvm/lib/Bitcode/Reader/Reader.cpp</tt>:
+ add a case for your instruction and how it will be parsed from bitcode</li>
<li><tt>llvm/lib/VMCore/Instruction.cpp</tt>:
add a case for how your instruction will be printed out to assembly</li>
@@ -285,7 +285,7 @@ to understand this new instruction.</p>
<div class="doc_text">
-<p><span class="doc_warning">WARNING: adding new types changes the bytecode
+<p><span class="doc_warning">WARNING: adding new types changes the bitcode
format, and will break compatibility with currently-existing LLVM
installations.</span> Only add new types if it is absolutely necessary.</p>
@@ -348,12 +348,12 @@ bool TypesEqual(const Type *Ty, const Type *Ty2,
<li><tt>llvm/lib/AsmReader/Lexer.l</tt>:
add ability to parse in the type from text assembly</li>
-<li><tt>llvm/lib/ByteCode/Writer/Writer.cpp</tt>:
- modify <tt>void BytecodeWriter::outputType(const Type *T)</tt> to serialize
+<li><tt>llvm/lib/BitCode/Writer/Writer.cpp</tt>:
+ modify <tt>void BitcodeWriter::outputType(const Type *T)</tt> to serialize
your type</li>
-<li><tt>llvm/lib/ByteCode/Reader/Reader.cpp</tt>:
- modify <tt>const Type *BytecodeReader::ParseType()</tt> to read your data
+<li><tt>llvm/lib/BitCode/Reader/Reader.cpp</tt>:
+ modify <tt>const Type *BitcodeReader::ParseType()</tt> to read your data
type</li>
<li><tt>llvm/lib/VMCore/AsmWriter.cpp</tt>:
OpenPOWER on IntegriCloud