| 4205 | } |
| 4206 | |
| 4207 | BfIRType BfIRBuilder::CreateStructType(const StringImpl& name) |
| 4208 | { |
| 4209 | BfIRType retType = WriteCmd(BfIRCmd_CreateStruct, name); |
| 4210 | NEW_CMD_INSERTED_IRTYPE; |
| 4211 | return retType; |
| 4212 | } |
| 4213 | |
| 4214 | BfIRType BfIRBuilder::CreateStructType(const BfSizedArray<BfIRType>& memberTypes) |
| 4215 | { |
no outgoing calls
no test coverage detected