1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

Fix documentation on the path to Bitcode reader/writer

llvm-svn: 183761
This commit is contained in:
Michael Liao 2013-06-11 18:09:21 +00:00
parent 919e60d2a1
commit 8e2a7be27a
2 changed files with 3 additions and 3 deletions

View File

@ -281,12 +281,12 @@ Adding a derived type
add ability to parse in the type from text assembly
#. ``llvm/lib/BitCode/Writer/Writer.cpp``:
#. ``llvm/lib/Bitcode/Writer/Writer.cpp``:
modify ``void BitcodeWriter::outputType(const Type *T)`` to serialize your
type
#. ``llvm/lib/BitCode/Reader/Reader.cpp``:
#. ``llvm/lib/Bitcode/Reader/Reader.cpp``:
modify ``const Type *BitcodeReader::ParseType()`` to read your data type

View File

@ -1074,7 +1074,7 @@ different `tools`_.
This directory holds the source code for the LLVM assembly language parser
library.
``llvm/lib/BitCode/``
``llvm/lib/Bitcode/``
This directory holds code for reading and write LLVM bitcode.