| 5498 | } |
| 5499 | |
| 5500 | BfIRFunctionType BfIRBuilder::CreateFunctionType(BfIRType resultType, const BfSizedArray<BfIRType>& paramTypes, bool isVarArg) |
| 5501 | { |
| 5502 | BfIRFunctionType retType = WriteCmd(BfIRCmd_CreateFunctionType, resultType, paramTypes, isVarArg); |
| 5503 | NEW_CMD_INSERTED_IRFUNCTYPE; |
| 5504 | return retType; |
| 5505 | } |
| 5506 | |
| 5507 | BfIRFunction BfIRBuilder::CreateFunction(BfIRFunctionType funcType, BfIRLinkageType linkageType, const StringImpl& name) |
| 5508 | { |
no outgoing calls
no test coverage detected