This function can not be inlined
| 2 | namespace FEXCore::Assert { |
| 3 | // This function can not be inlined |
| 4 | [[noreturn]] |
| 5 | __attribute__((noinline, naked)) void ForcedAssert() { |
| 6 | #ifdef _M_X86_64 |
| 7 | asm volatile("ud2"); |
| 8 | #else |
| 9 | asm volatile("hlt #1"); |
| 10 | #endif |
| 11 | } |
| 12 | } // namespace FEXCore::Assert |
nothing calls this directly
no outgoing calls
no test coverage detected