| 4195 | } |
| 4196 | |
| 4197 | BfIRType BfIRBuilder::GetPrimitiveType(BfTypeCode typeCode) |
| 4198 | { |
| 4199 | FixTypeCode(typeCode); |
| 4200 | |
| 4201 | BfIRType irType; |
| 4202 | irType.mKind = BfIRTypeData::TypeKind_TypeCode; |
| 4203 | irType.mId = (int)typeCode; |
| 4204 | return irType; |
| 4205 | } |
| 4206 | |
| 4207 | BfIRType BfIRBuilder::CreateStructType(const StringImpl& name) |
| 4208 | { |
no outgoing calls
no test coverage detected