diff options
author | Michael Liao <michael.liao@intel.com> | 2013-06-11 18:09:21 +0000 |
---|---|---|
committer | Michael Liao <michael.liao@intel.com> | 2013-06-11 18:09:21 +0000 |
commit | e7fdb1386a0c20bf3cb833018fbcd5e6169dd2f7 (patch) | |
tree | 218b08d4f63e86f1ed89a3d5221b7be2881cdee1 /llvm/docs/ExtendingLLVM.rst | |
parent | 016fa1b8996bb4356075833677f0d9f76cb0cc69 (diff) | |
download | bcm5719-llvm-e7fdb1386a0c20bf3cb833018fbcd5e6169dd2f7.tar.gz bcm5719-llvm-e7fdb1386a0c20bf3cb833018fbcd5e6169dd2f7.zip |
Fix documentation on the path to Bitcode reader/writer
llvm-svn: 183761
Diffstat (limited to 'llvm/docs/ExtendingLLVM.rst')
-rw-r--r-- | llvm/docs/ExtendingLLVM.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/ExtendingLLVM.rst b/llvm/docs/ExtendingLLVM.rst index 3ae676a1b6e..60cbf011e57 100644 --- a/llvm/docs/ExtendingLLVM.rst +++ b/llvm/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 |