diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-09-28 16:58:12 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-09-28 16:58:12 +0000 |
commit | e39cd63ddd69e3157a00b5e931d6b0aea21cf653 (patch) | |
tree | b68cd6a5c0173ab8ab920c6f968bb8ab77d86911 /docs/ExtendingLLVM.html | |
parent | 44666b15b1eb7d84e66e87ab1ff420084eac1f26 (diff) |
* InstructionReader.cpp was absorbed into Reader.cpp
* Wrap at 80 cols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16543 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ExtendingLLVM.html')
-rw-r--r-- | docs/ExtendingLLVM.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/ExtendingLLVM.html b/docs/ExtendingLLVM.html index 1c2408ab59..f2c56a0493 100644 --- a/docs/ExtendingLLVM.html +++ b/docs/ExtendingLLVM.html @@ -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> |