diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:04:03 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:04:03 +0000 |
commit | f8af5cf600354830d4ccf59732403f0f073eccb9 (patch) | |
tree | 2ba0398b4c42ad4f55561327538044fd2c925a8b /docs/ExtendingLLVM.rst | |
parent | 59d6cff90eecf31cb3dd860c4e786674cfdd42eb (diff) |
Diffstat (limited to 'docs/ExtendingLLVM.rst')
-rw-r--r-- | docs/ExtendingLLVM.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ExtendingLLVM.rst b/docs/ExtendingLLVM.rst index 3ae676a1b6e70..60cbf011e5731 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 |