diff options
author | Yaron Keren <yaron.keren@gmail.com> | 2014-05-03 12:06:13 +0000 |
---|---|---|
committer | Yaron Keren <yaron.keren@gmail.com> | 2014-05-03 12:06:13 +0000 |
commit | 81bb41509631f0d2d927d8044acd0949c0372d41 (patch) | |
tree | 6c7bba1b7d37aeea41f66b024b5a8387688bcc80 /llvm/docs/ProgrammersManual.rst | |
parent | 1e3edf98cb7f1215830071295d13a92916989fdc (diff) | |
download | bcm5719-llvm-81bb41509631f0d2d927d8044acd0949c0372d41.tar.gz bcm5719-llvm-81bb41509631f0d2d927d8044acd0949c0372d41.zip |
Updated Doxygen link for InstIterator.h.
llvm-svn: 207906
Diffstat (limited to 'llvm/docs/ProgrammersManual.rst')
-rw-r--r-- | llvm/docs/ProgrammersManual.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/ProgrammersManual.rst b/llvm/docs/ProgrammersManual.rst index 55f37545484..473d95df78c 100644 --- a/llvm/docs/ProgrammersManual.rst +++ b/llvm/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: |