OSDN Git Service

Fixed code snippet in Kaleidoscope tutorial to reflect final full code listing
authorWilfred Hughes <me@wilfred.me.uk>
Sat, 16 Feb 2019 18:37:55 +0000 (18:37 +0000)
committerWilfred Hughes <me@wilfred.me.uk>
Sat, 16 Feb 2019 18:37:55 +0000 (18:37 +0000)
Patch by Frank He.

Differential Revision: https://reviews.llvm.org/D52166

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@354205 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/LangImpl03.rst

index 1f2d20f..da465ef 100644 (file)
@@ -275,7 +275,7 @@ with:
         FunctionType::get(Type::getDoubleTy(TheContext), Doubles, false);
 
       Function *F =
-        Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
+        Function::Create(FT, Function::ExternalLinkage, Name, TheModule.get());
 
 This code packs a lot of power into a few lines. Note first that this
 function returns a "Function\*" instead of a "Value\*". Because a