diff options
Diffstat (limited to 'llvm/docs/tutorial/OCamlLangImpl4.rst')
-rw-r--r-- | llvm/docs/tutorial/OCamlLangImpl4.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/OCamlLangImpl4.rst b/llvm/docs/tutorial/OCamlLangImpl4.rst index b13b2afa888..feeba01be24 100644 --- a/llvm/docs/tutorial/OCamlLangImpl4.rst +++ b/llvm/docs/tutorial/OCamlLangImpl4.rst @@ -130,7 +130,7 @@ exactly the code we have now, except that we would defer running the optimizer until the entire file has been parsed. In order to get per-function optimizations going, we need to set up a -`Llvm.PassManager <../WritingAnLLVMPass.html#passmanager>`_ to hold and +`Llvm.PassManager <../WritingAnLLVMPass.html#what-passmanager-does>`_ to hold and organize the LLVM optimizations that we want to run. Once we have that, we can add a set of optimizations to run. The code looks like this: |