summaryrefslogtreecommitdiffstats
path: root/llvm/docs
diff options
context:
space:
mode:
authorCharlie Turner <charlie.turner@arm.com>2015-04-16 17:01:23 +0000
committerCharlie Turner <charlie.turner@arm.com>2015-04-16 17:01:23 +0000
commit2ac115e5716d1998f2fe6c934d47eb128665cc96 (patch)
tree6330a470fc55c5459622af613c88099f2feea666 /llvm/docs
parent5c8f1dc27402a31a2ec35a74b80729e0d555e276 (diff)
downloadbcm5719-llvm-2ac115e5716d1998f2fe6c934d47eb128665cc96.tar.gz
bcm5719-llvm-2ac115e5716d1998f2fe6c934d47eb128665cc96.zip
Editorial changes in the programmers manual.
VMCore was renamed to IR back in 2013. The relevant "core" implementations were moved into the lib/IR directory at the same time. llvm-svn: 235116
Diffstat (limited to 'llvm/docs')
-rw-r--r--llvm/docs/ProgrammersManual.rst9
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/docs/ProgrammersManual.rst b/llvm/docs/ProgrammersManual.rst
index 1e7e3ac1aea..6a4c22a692d 100644
--- a/llvm/docs/ProgrammersManual.rst
+++ b/llvm/docs/ProgrammersManual.rst
@@ -1687,8 +1687,8 @@ they will automatically convert to a ptr-to-instance type whenever they need to.
Instead of derferencing the iterator and then taking the address of the result,
you can simply assign the iterator to the proper pointer type and you get the
dereference and address-of operation as a result of the assignment (behind the
-scenes, this is a result of overloading casting mechanisms). Thus the last line
-of the last example,
+scenes, this is a result of overloading casting mechanisms). Thus the second
+line of the last example,
.. code-block:: c++
@@ -2582,8 +2582,9 @@ doxygen info: `Type Clases <http://llvm.org/doxygen/classllvm_1_1Type.html>`_
The Core LLVM classes are the primary means of representing the program being
inspected or transformed. The core LLVM classes are defined in header files in
-the ``include/llvm/`` directory, and implemented in the ``lib/VMCore``
-directory.
+the ``include/llvm/IR`` directory, and implemented in the ``lib/IR``
+directory. It's worth noting that, for historical reasons, this library is
+called ``libLLVMCore.so``, not ``libLLVMIR.so`` as you might expect.
.. _Type:
OpenPOWER on IntegriCloud