mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	renamed GC_ALIGNED* macros to MEMORY_ALIGNED*
This commit is contained in:
		
							parent
							
								
									a79fb90d62
								
							
						
					
					
						commit
						eab69534c6
					
				
					 1 changed files with 12 additions and 12 deletions
				
			
		|  | @ -71,12 +71,12 @@ private: | ||||||
| 	#define CHECK_HEAP_INTEGRITY() | 	#define CHECK_HEAP_INTEGRITY() | ||||||
| 
 | 
 | ||||||
| // Alignment
 | // Alignment
 | ||||||
| 	#define GC_ALIGNED16(x) __declspec(align(16)) x | 	#define MEMORY_ALIGNED16(x) __declspec(align(16)) x | ||||||
| 	#define GC_ALIGNED32(x) __declspec(align(32)) x | 	#define MEMORY_ALIGNED32(x) __declspec(align(32)) x | ||||||
| 	#define GC_ALIGNED64(x) __declspec(align(64)) x | 	#define MEMORY_ALIGNED64(x) __declspec(align(64)) x | ||||||
| 	#define GC_ALIGNED128(x) __declspec(align(128)) x | 	#define MEMORY_ALIGNED128(x) __declspec(align(128)) x | ||||||
| 	#define GC_ALIGNED16_DECL(x) __declspec(align(16)) x | 	#define MEMORY_ALIGNED16_DECL(x) __declspec(align(16)) x | ||||||
| 	#define GC_ALIGNED64_DECL(x) __declspec(align(64)) x | 	#define MEMORY_ALIGNED64_DECL(x) __declspec(align(64)) x | ||||||
| 
 | 
 | ||||||
| // Since they are always around on windows
 | // Since they are always around on windows
 | ||||||
| 	#define HAVE_WX 1 | 	#define HAVE_WX 1 | ||||||
|  | @ -108,12 +108,12 @@ private: | ||||||
| #define _M_IX86 1 | #define _M_IX86 1 | ||||||
| #endif | #endif | ||||||
| #define __forceinline inline __attribute__((always_inline)) | #define __forceinline inline __attribute__((always_inline)) | ||||||
| #define GC_ALIGNED16(x) __attribute__((aligned(16))) x | #define MEMORY_ALIGNED16(x) __attribute__((aligned(16))) x | ||||||
| #define GC_ALIGNED32(x) __attribute__((aligned(32))) x | #define MEMORY_ALIGNED32(x) __attribute__((aligned(32))) x | ||||||
| #define GC_ALIGNED64(x) __attribute__((aligned(64))) x | #define MEMORY_ALIGNED64(x) __attribute__((aligned(64))) x | ||||||
| #define GC_ALIGNED128(x) __attribute__((aligned(128))) x | #define MEMORY_ALIGNED128(x) __attribute__((aligned(128))) x | ||||||
| #define GC_ALIGNED16_DECL(x) __attribute__((aligned(16))) x | #define MEMORY_ALIGNED16_DECL(x) __attribute__((aligned(16))) x | ||||||
| #define GC_ALIGNED64_DECL(x) __attribute__((aligned(64))) x | #define MEMORY_ALIGNED64_DECL(x) __attribute__((aligned(64))) x | ||||||
| #endif | #endif | ||||||
| 
 | 
 | ||||||
| #ifdef _MSC_VER | #ifdef _MSC_VER | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue