delete gcc elif from af_address

main
serr 2025-01-15 20:48:53 +03:00
parent b1efb0877a
commit 85b617e2cd
1 changed files with 1 additions and 3 deletions

View File

@ -20,10 +20,8 @@ byte* AF_address(byte* f) {
byte* offset = (byte*)(*((int32_t*)f_p) >> 8); byte* offset = (byte*)(*((int32_t*)f_p) >> 8);
real_address = f_p + (int32_t)offset + 5; real_address = f_p + (int32_t)offset + 5;
#endif #endif
#elif defined(__GNUC__) // GCC
real_address = f;
#else // other compilers (it's not a given that it works) #else // other compilers (it's not a given that it works)
real_address = f; real_address = f;
#endif #endif
return real_address; return real_address;
} }