| 5272 | } |
| 5273 | |
| 5274 | void BfIRBuilder::GlobalVar_SetAlignment(BfIRValue globalVar, int alignment) |
| 5275 | { |
| 5276 | BF_ASSERT(alignment != -1); |
| 5277 | BfIRValue retVal = WriteCmd(BfIRCmd_GlobalVar_SetAlignment, globalVar, alignment); |
| 5278 | NEW_CMD_INSERTED; |
| 5279 | } |
| 5280 | |
| 5281 | void BfIRBuilder::GlobalVar_SetStorageKind(BfIRValue globalVar, BfIRStorageKind storageKind) |
| 5282 | { |
no outgoing calls
no test coverage detected