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 | 5753883dc0771be07e846e83c378bd6481006f70 (patch) | |
tree | a3b3efda1840cf262f875cbeca24ea877db519e8 /llvm/docs/ExtendingLLVM.html | |
parent | 349717934a1ed8bc43af27abb25b6cfa497e4a7e (diff) | |
download | bcm5719-llvm-5753883dc0771be07e846e83c378bd6481006f70.tar.gz bcm5719-llvm-5753883dc0771be07e846e83c378bd6481006f70.zip |
* InstructionReader.cpp was absorbed into Reader.cpp
* Wrap at 80 cols
llvm-svn: 16543
Diffstat (limited to 'llvm/docs/ExtendingLLVM.html')
-rw-r--r-- | llvm/docs/ExtendingLLVM.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/docs/ExtendingLLVM.html b/llvm/docs/ExtendingLLVM.html index 1c2408ab59d..f2c56a04934 100644 --- a/llvm/docs/ExtendingLLVM.html +++ b/llvm/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> |