OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ThenBB
(Results
1 - 4
of
4
) sorted by null
/external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp
523
BasicBlock *
ThenBB
= BasicBlock::Create(getGlobalContext(), "then", TheFunction);
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
);
/external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp
627
BasicBlock *
ThenBB
= BasicBlock::Create(getGlobalContext(), "then", TheFunction);
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
);
/external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp
723
BasicBlock *
ThenBB
= BasicBlock::Create(getGlobalContext(), "then", TheFunction);
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
);
[
all
...]
/external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp
[
all
...]
Completed in 81 milliseconds