Searched refs:ThenBB (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp523 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction); local
527 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
530 Builder.SetInsertPoint(ThenBB);
536 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
537 ThenBB = Builder.GetInsertBlock();
556 PN->addIncoming(ThenV, ThenBB);
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp627 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction); local
631 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
634 Builder.SetInsertPoint(ThenBB);
640 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
641 ThenBB = Builder.GetInsertBlock();
660 PN->addIncoming(ThenV, ThenBB);
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp723 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction); local
727 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
730 Builder.SetInsertPoint(ThenBB);
736 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
737 ThenBB = Builder.GetInsertBlock();
756 PN->addIncoming(ThenV, ThenBB);

Completed in 211 milliseconds