Skip to content

Commit e7fdb13

Browse files
committed
Fix documentation on the path to Bitcode reader/writer
llvm-svn: 183761
1 parent 016fa1b commit e7fdb13

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

llvm/docs/ExtendingLLVM.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,12 +281,12 @@ Adding a derived type
281281

282282
add ability to parse in the type from text assembly
283283

284-
#. ``llvm/lib/BitCode/Writer/Writer.cpp``:
284+
#. ``llvm/lib/Bitcode/Writer/Writer.cpp``:
285285

286286
modify ``void BitcodeWriter::outputType(const Type *T)`` to serialize your
287287
type
288288

289-
#. ``llvm/lib/BitCode/Reader/Reader.cpp``:
289+
#. ``llvm/lib/Bitcode/Reader/Reader.cpp``:
290290

291291
modify ``const Type *BitcodeReader::ParseType()`` to read your data type
292292

llvm/docs/GettingStarted.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ different `tools`_.
10741074
This directory holds the source code for the LLVM assembly language parser
10751075
library.
10761076

1077-
``llvm/lib/BitCode/``
1077+
``llvm/lib/Bitcode/``
10781078

10791079
This directory holds code for reading and write LLVM bitcode.
10801080

0 commit comments

Comments
 (0)