reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/IR/Instructions.cpp
 1172     : Instruction(Type::getVoidTy(BI.getContext()), Instruction::Br,
 1173                   OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
 1174                   BI.getNumOperands()) {
 1175   Op<-1>() = BI.Op<-1>();
 1176   if (BI.getNumOperands() != 1) {
 1177     assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
 1178     Op<-3>() = BI.Op<-3>();
 1179     Op<-2>() = BI.Op<-2>();
 1181   SubclassOptionalData = BI.SubclassOptionalData;