Updated Doxygen link for InstIterator.h.
authorYaron Keren <yaron.keren@gmail.com>
Sat, 3 May 2014 12:06:13 +0000 (12:06 +0000)
committerYaron Keren <yaron.keren@gmail.com>
Sat, 3 May 2014 12:06:13 +0000 (12:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207906 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ProgrammersManual.rst

index 55f37545484d659ec44bae01da9c9a04892a41fb..473d95df78c1727d15e212a78f91cd6eb1c4b0b0 100644 (file)
@@ -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: