mirror of
				https://github.com/hedge-dev/XenonRecomp.git
				synced 2025-11-03 22:37:09 +00:00 
			
		
		
		
	Recompiler: Fix accidental impl linkage
This commit is contained in:
		@@ -19,7 +19,7 @@
 | 
			
		||||
#define PPC_STRINGIFY(x) PPC_XSTRINGIFY(x)
 | 
			
		||||
#define PPC_FUNC(x) void x(PPCContext& __restrict ctx, uint8_t* base)
 | 
			
		||||
#define PPC_FUNC_IMPL(x) extern "C" PPC_FUNC(x)
 | 
			
		||||
#define PPC_EXTERN_FUNC(x) extern "C" PPC_FUNC(x)
 | 
			
		||||
#define PPC_EXTERN_FUNC(x) extern PPC_FUNC(x)
 | 
			
		||||
#define PPC_WEAK_FUNC(x) __attribute__((weak,noinline)) PPC_FUNC(x)
 | 
			
		||||
 | 
			
		||||
#define PPC_FUNC_PROLOGUE() __builtin_assume(((size_t)base & 0xFFFFFFFF) == 0)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user