comparison portasm/portasm-ppc.S @ 645:6a8aac9b2bcf

- removal of `autovar` macro detection lib: * was a good idea, but never fully pushed through, so code was duplicating most of dyncall_macros.h * didn't find any outside use and plans to make it a standalone lib never materialized * so basically removing code to avoid code duplication that risks to never stay in sync
author Tassilo Philipp
date Mon, 05 Feb 2024 16:43:59 +0100
parents f5577f6bf97a
children
comparison
equal deleted inserted replaced
644:f13444192ceb 645:6a8aac9b2bcf
22 22
23 */ 23 */
24 24
25 25
26 26
27 #include "../autovar/autovar_OS.h" 27 #include "../dyncall/dyncall_macros.h"
28 #if defined(OS_Darwin) 28 #if defined(DC__OS_Darwin)
29 #define GLOBAL_C(X) .globl _##X 29 #define GLOBAL_C(X) .globl _##X
30 #define ENTRY_C(X) _##X: 30 #define ENTRY_C(X) _##X:
31 #else 31 #else
32 #define GLOBAL_C(X) .globl X 32 #define GLOBAL_C(X) .globl X
33 #define ENTRY_C(X) X: 33 #define ENTRY_C(X) X: