From ff17b032dd433c022440217e209d79c2600c7887 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 12 Dec 2008 04:20:01 +0000 Subject: [PATCH] fix some incorrect links. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60919 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/tutorial/OCamlLangImpl3.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tutorial/OCamlLangImpl3.html b/docs/tutorial/OCamlLangImpl3.html index 0ff0703d18c..9caae435e29 100644 --- a/docs/tutorial/OCamlLangImpl3.html +++ b/docs/tutorial/OCamlLangImpl3.html @@ -26,7 +26,7 @@
  • Full Code Listing
  • -
  • Chapter 4: Adding JIT and Optimizer +
  • Chapter 4: Adding JIT and Optimizer Support
  • @@ -491,7 +491,7 @@ entry:

    Note how the parser turns the top-level expression into anonymous functions -for us. This will be handy when we add JIT +for us. This will be handy when we add JIT support in the next chapter. Also note that the code is very literally transcribed, no optimizations are being performed. We will add optimizations explicitly @@ -599,7 +599,7 @@ generated. Here you can see the big picture with all the functions referencing each other.

    This wraps up the third chapter of the Kaleidoscope tutorial. Up next, we'll -describe how to add JIT codegen and optimizer +describe how to add JIT codegen and optimizer support to this so we can actually start running code!