summaryrefslogtreecommitdiff
path: root/docs/ExtendingLLVM.rst
diff options
context:
space:
mode:
authorMichael Liao <michael.liao@intel.com>2013-06-11 18:09:21 +0000
committerMichael Liao <michael.liao@intel.com>2013-06-11 18:09:21 +0000
commit0262db3b55301c6d6b75a432273e6b12d9cbbba9 (patch)
tree9f9039207ad4d7bddf65453d0e71375bb55032fc /docs/ExtendingLLVM.rst
parent6c21feb0b7f6f4c9b92878cf22d59aed4ebe226f (diff)
downloadllvm-0262db3b55301c6d6b75a432273e6b12d9cbbba9.tar.gz
llvm-0262db3b55301c6d6b75a432273e6b12d9cbbba9.tar.bz2
llvm-0262db3b55301c6d6b75a432273e6b12d9cbbba9.tar.xz
Fix documentation on the path to Bitcode reader/writer
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183761 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ExtendingLLVM.rst')
-rw-r--r--docs/ExtendingLLVM.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ExtendingLLVM.rst b/docs/ExtendingLLVM.rst
index 3ae676a1b6..60cbf011e5 100644
--- a/docs/ExtendingLLVM.rst
+++ b/docs/ExtendingLLVM.rst
@@ -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