From e5a6d7ddae6c7273fe4f828328b31733957b25e1 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. llvm-svn: 60919 --- llvm/docs/tutorial/OCamlLangImpl3.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/docs/tutorial/OCamlLangImpl3.html b/llvm/docs/tutorial/OCamlLangImpl3.html index 0ff0703d18cc..9caae435e29e 100644 --- a/llvm/docs/tutorial/OCamlLangImpl3.html +++ b/llvm/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!