reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1270 F = Function::Create(FunctionType::get(B.getVoidTy(), {B.getInt1Ty()}, false), 1270 F = Function::Create(FunctionType::get(B.getVoidTy(), {B.getInt1Ty()}, false), 1287 B.SetInsertPoint(Entry); 1289 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "alloc"); 1290 StoreInst *StoreEntry = B.CreateStore(B.getInt8(0), Alloca); 1290 StoreInst *StoreEntry = B.CreateStore(B.getInt8(0), Alloca); 1291 B.CreateCondBr(B.getTrue(), BlockA, BlockB); 1291 B.CreateCondBr(B.getTrue(), BlockA, BlockB); 1293 B.SetInsertPoint(BlockA); 1294 StoreInst *StoreA = B.CreateStore(B.getInt8(1), Alloca); 1294 StoreInst *StoreA = B.CreateStore(B.getInt8(1), Alloca); 1295 B.CreateBr(BlockC); 1297 B.SetInsertPoint(BlockB); 1298 StoreInst *StoreB = B.CreateStore(B.getInt8(2), Alloca); 1298 StoreInst *StoreB = B.CreateStore(B.getInt8(2), Alloca); 1299 B.CreateBr(BlockC); 1301 B.SetInsertPoint(BlockC); 1302 B.CreateUnreachable();