HomeSort by relevance Sort by last modified time
    Searched refs:ThenBlock (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 263 // ThenBlock
266 // ThenBlock block is created and its terminator is returned.
267 // If Unreachable, ThenBlock is terminated with UnreachableInst, otherwise
275 BasicBlock *ThenBlock = BasicBlock::Create(C, "", Head->getParent(), Tail);
278 CheckTerm = new UnreachableInst(C, ThenBlock);
280 CheckTerm = BranchInst::Create(Tail, ThenBlock);
282 BranchInst::Create(/*ifTrue*/ThenBlock, /*ifFalse*/Tail, Cmp);
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp     [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 406 llvm::BasicBlock *ThenBlock = createBasicBlock("if.then");
411 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock);
414 EmitBlock(ThenBlock);
    [all...]

Completed in 178 milliseconds