Fixed empty TYPE(__proc) causing linker issues on 32-bit arm

Richard Campbell 2022-03-10 19:14:49 -08:00
parent 4dde3417b4
commit ddb2d5f621
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
#define REG_SZ (4)
#define MCONTEXT_GREGS (32)
#define TYPE(__proc)
#define TYPE(__proc) .type __proc, %function;
#define FETCH_LINKPTR(dest) \
asm("movs %0, r4" : "=r" ((dest)))