| 524 | |
| 525 | |
| 526 | size_t Architecture::GetSemanticFlagGroupLowLevelILCallback(void* ctxt, uint32_t semGroup, BNLowLevelILFunction* il) |
| 527 | { |
| 528 | CallbackRef<Architecture> arch(ctxt); |
| 529 | Ref<LowLevelILFunction> func(new LowLevelILFunction(BNNewLowLevelILFunctionReference(il))); |
| 530 | return arch->GetSemanticFlagGroupLowLevelIL(semGroup, *func); |
| 531 | } |
| 532 | |
| 533 | |
| 534 | void Architecture::FreeRegisterListCallback(void*, uint32_t* regs, size_t) |
nothing calls this directly
no test coverage detected