From: Yaron Keren Date: Sun, 12 Jul 2015 20:40:41 +0000 (+0000) Subject: Fix PR24099 reported by Tomas Brukner. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6c57f2fe84bc56f46797dad5fa9f1020686f3f43;p=oota-llvm.git Fix PR24099 reported by Tomas Brukner. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241997 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ProgrammersManual.rst b/docs/ProgrammersManual.rst index ceb39e18efd..08cc61a187b 100644 --- a/docs/ProgrammersManual.rst +++ b/docs/ProgrammersManual.rst @@ -1868,7 +1868,7 @@ Iterating over predecessors & successors of blocks ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Iterating over the predecessors and successors of a block is quite easy with the -routines defined in ``"llvm/Support/CFG.h"``. Just use code like this to +routines defined in ``"llvm/IR/CFG.h"``. Just use code like this to iterate over all predecessors of BB: .. code-block:: c++