examples: Remove implicit ilist iterator conversions, NFC
[oota-llvm.git] / examples / Kaleidoscope / Orc / lazy_irgen / toy.cpp
index f53fe2477fe3af90281bb2f698138f845b319042..ebaff49e89b25712cd11c697c57dcd9560ac5226 100644 (file)
@@ -1084,7 +1084,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;