]> granicus.if.org Git - llvm/commitdiff
Fixed errors in docs.
authorAlexander Kornienko <alexfh@google.com>
Mon, 18 Jul 2016 14:13:18 +0000 (14:13 +0000)
committerAlexander Kornienko <alexfh@google.com>
Mon, 18 Jul 2016 14:13:18 +0000 (14:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@275789 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/BuildingAJIT3.rst

index 3e8d3fbef5a9f1e703d4b7f756def50850f35981..ba0dab91c4ef58e225aa123132290bb8ac83a244 100644 (file)
@@ -78,6 +78,7 @@ now we'll be treating it as an opaque utility: We just need to pass a reference
 to it into our new CompileOnDemandLayer, and the layer will do all the work of
 setting up the callbacks using the callback manager we gave it.
 
+.. code-block:: c++
 
   KaleidoscopeJIT()
       : TM(EngineBuilder().selectTarget()), DL(TM->createDataLayout()),
@@ -124,6 +125,8 @@ indirect stubs manager will be deleted, freeing any memory allocated to the
 stubs. We supply this function by using the
 createLocalIndirectStubsManagerBuilder utility.
 
+.. code-block:: c++
+
   // ...
           if (auto Sym = CODLayer.findSymbol(Name, false))
   // ...