Random load word at the end of the function for some reason.
| 10 | |
| 11 | // Random load word at the end of the function for some reason. |
| 12 | zMovePoint* zMovePoint_GetMemPool(S32 cnt) |
| 13 | { |
| 14 | g_mvpt_list = cnt ? (zMovePoint*)xMemAllocSize(cnt * sizeof(zMovePoint)) : NULL; |
| 15 | g_mvpt_cnt = cnt; |
| 16 | return *(__typeof__(g_mvpt_list) volatile*)&g_mvpt_list; |
| 17 | } |
| 18 | |
| 19 | void zMovePointInit(zMovePoint* m, xMovePointAsset* asset) |
| 20 | { |
no outgoing calls
no test coverage detected