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

/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp524 BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else"); local
527 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
540 TheFunction->getBasicBlockList().push_back(ElseBB);
541 Builder.SetInsertPoint(ElseBB);
547 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
548 ElseBB = Builder.GetInsertBlock();
557 PN->addIncoming(ElseV, ElseBB);
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp628 BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else"); local
631 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
644 TheFunction->getBasicBlockList().push_back(ElseBB);
645 Builder.SetInsertPoint(ElseBB);
651 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
652 ElseBB = Builder.GetInsertBlock();
661 PN->addIncoming(ElseV, ElseBB);
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp724 BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else"); local
727 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
740 TheFunction->getBasicBlockList().push_back(ElseBB);
741 Builder.SetInsertPoint(ElseBB);
747 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
748 ElseBB = Builder.GetInsertBlock();
757 PN->addIncoming(ElseV, ElseBB);

Completed in 115 milliseconds