| 267 | |
| 268 | #if defined(__clang__) || defined (__GNUC__) |
| 269 | __attribute__((no_sanitize_address)) |
| 270 | #endif |
| 271 | void fxCheckCStack(txMachine* the) |
| 272 | { |
| 273 | char x; |
| 274 | char *stack = &x; |
| 275 | if (stack <= the->stackLimit) { |
| 276 | fxAbort(the, XS_NATIVE_STACK_OVERFLOW_EXIT); |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | void fxCollect(txMachine* the, txFlag theFlag) |
| 281 | { |
no test coverage detected