examples: Remove implicit ilist iterator conversions, NFC
[oota-llvm.git] / examples / Kaleidoscope / Orc / fully_lazy / toy.cpp
index 877a7262e9125fe6c2f4fa38b5dd64a347dd4b4e..8ba76e86ee072b6f82a7262378abaf1aaee42aae 100644 (file)
@@ -1085,7 +1085,7 @@ void PrototypeAST::CreateArgumentAllocas(Function *F, IRGenContext &C) {
     AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]);
 
     // Store the initial value into the alloca.
-    C.getBuilder().CreateStore(AI, Alloca);
+    C.getBuilder().CreateStore(&*AI, Alloca);
 
     // Add arguments to variable symbol table.
     C.NamedValues[Args[Idx]] = Alloca;