[llvm] r183761 - Fix documentation on the path to Bitcode reader/writer
Michael Liao
michael.liao at intel.com
Tue Jun 11 11:09:21 PDT 2013
Author: hliao
Date: Tue Jun 11 13:09:21 2013
New Revision: 183761
URL: http://llvm.org/viewvc/llvm-project?rev=183761&view=rev
Log:
Fix documentation on the path to Bitcode reader/writer
Modified:
llvm/trunk/docs/ExtendingLLVM.rst
llvm/trunk/docs/GettingStarted.rst
Modified: llvm/trunk/docs/ExtendingLLVM.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ExtendingLLVM.rst?rev=183761&r1=183760&r2=183761&view=diff
==============================================================================
--- llvm/trunk/docs/ExtendingLLVM.rst (original)
+++ llvm/trunk/docs/ExtendingLLVM.rst Tue Jun 11 13:09:21 2013
@@ -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
Modified: llvm/trunk/docs/GettingStarted.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/GettingStarted.rst?rev=183761&r1=183760&r2=183761&view=diff
==============================================================================
--- llvm/trunk/docs/GettingStarted.rst (original)
+++ llvm/trunk/docs/GettingStarted.rst Tue Jun 11 13:09:21 2013
@@ -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.
More information about the llvm-commits
mailing list