summaryrefslogtreecommitdiff
path: root/docs/ProgrammersManual.rst
diff options
context:
space:
mode:
authorYaron Keren <yaron.keren@gmail.com>2014-05-03 12:06:13 +0000
committerYaron Keren <yaron.keren@gmail.com>2014-05-03 12:06:13 +0000
commit879875f8029e8edf8089235c636086531dbaf857 (patch)
tree6c423afb09b77ac29cb64bcfa12405c4248843e4 /docs/ProgrammersManual.rst
parente26759bd663c0529454db0b53eda4fdc506e4c54 (diff)
downloadllvm-879875f8029e8edf8089235c636086531dbaf857.tar.gz
llvm-879875f8029e8edf8089235c636086531dbaf857.tar.bz2
llvm-879875f8029e8edf8089235c636086531dbaf857.tar.xz
Updated Doxygen link for InstIterator.h.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207906 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ProgrammersManual.rst')
-rw-r--r--docs/ProgrammersManual.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ProgrammersManual.rst b/docs/ProgrammersManual.rst
index 55f3754548..473d95df78 100644
--- a/docs/ProgrammersManual.rst
+++ b/docs/ProgrammersManual.rst
@@ -1560,7 +1560,7 @@ If you're finding that you commonly iterate over a ``Function``'s
``BasicBlock``\ s and then that ``BasicBlock``'s ``Instruction``\ s,
``InstIterator`` should be used instead. You'll need to include
``llvm/IR/InstIterator.h`` (`doxygen
-<http://llvm.org/doxygen/InstIterator_8h-source.html>`__) and then instantiate
+<http://llvm.org/doxygen/InstIterator_8h.html>`__) and then instantiate
``InstIterator``\ s explicitly in your code. Here's a small example that shows
how to dump all instructions in a function to the standard error stream: