examples: Remove implicit ilist iterator conversions, NFC
[oota-llvm.git] / examples / Kaleidoscope / Orc / initial / toy.cpp
index 085d0da8f512cde6b5c70108d821a072002570be..2a6bb92246d04a5a090ed2c4dd673d4a43e6d900 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;