From e7fdb1386a0c20bf3cb833018fbcd5e6169dd2f7 Mon Sep 17 00:00:00 2001 From: Michael Liao Date: Tue, 11 Jun 2013 18:09:21 +0000 Subject: [PATCH] Fix documentation on the path to Bitcode reader/writer llvm-svn: 183761 --- llvm/docs/ExtendingLLVM.rst | 4 ++-- llvm/docs/GettingStarted.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/docs/ExtendingLLVM.rst b/llvm/docs/ExtendingLLVM.rst index 3ae676a1b6e7..60cbf011e573 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 diff --git a/llvm/docs/GettingStarted.rst b/llvm/docs/GettingStarted.rst index dafc0c45b6cd..3498b88f5112 100644 --- a/llvm/docs/GettingStarted.rst +++ b/llvm/docs/GettingStarted.rst @@ -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.