Searched refs:NextVar (Results 1 – 6 of 6) sorted by relevance
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 619 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar"); in Codegen() local 641 Variable->addIncoming(NextVar, LoopEndBB); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 723 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar"); in Codegen() local 745 Variable->addIncoming(NextVar, LoopEndBB); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 832 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar"); in Codegen() local 833 Builder.CreateStore(NextVar, Alloca); in Codegen()
|
/external/llvm/docs/tutorial/ |
D | LangImpl5.rst | 659 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar"); 663 '``NextVar``' will be the value of the loop variable on the next 704 Variable->addIncoming(NextVar, LoopEndBB); 716 The final code handles various cleanups: now that we have the "NextVar" 1365 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar"); 1387 Variable->addIncoming(NextVar, LoopEndBB);
|
D | LangImpl7.rst | 394 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar"); 395 Builder.CreateStore(NextVar, Alloca); 1690 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar"); 1691 Builder.CreateStore(NextVar, Alloca);
|
D | LangImpl6.rst | 1469 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar"); 1491 Variable->addIncoming(NextVar, LoopEndBB);
|