* InstructionReader.cpp was absorbed into Reader.cpp
authorMisha Brukman <brukman+llvm@gmail.com>
Tue, 28 Sep 2004 16:58:12 +0000 (16:58 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Tue, 28 Sep 2004 16:58:12 +0000 (16:58 +0000)
* Wrap at 80 cols

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16543 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ExtendingLLVM.html

index 1c2408ab59df8a3ce94c2e11eab571451067b433..f2c56a049346c4a3a6fcd2567731ee4e866b6437 100644 (file)
@@ -144,14 +144,15 @@ 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/InstructionReader.cpp</tt>:
+<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/VMCore/Instruction.cpp</tt>:
     add a case for how your instruction will be printed out to assembly</li>
 
 <li><tt>llvm/lib/VMCore/Instructions.cpp</tt>:
-    implement the class you defined in <tt>llvm/include/llvm/Instructions.h</tt></li>
+    implement the class you defined in
+    <tt>llvm/include/llvm/Instructions.h</tt></li>
 
 </ol>