aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ExtendingLLVM.rst4
-rw-r--r--docs/GettingStarted.rst2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/ExtendingLLVM.rst b/docs/ExtendingLLVM.rst
index 3ae676a..60cbf01 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
diff --git a/docs/GettingStarted.rst b/docs/GettingStarted.rst
index dafc0c4..3498b88 100644
--- a/docs/GettingStarted.rst
+++ b/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.