mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Port yuzu-emu/yuzu#4577: "common/assert: Make use of C++ attribute syntax" (#5529)
Co-authored-by: Lioncash <mathew1800@gmail.com>
This commit is contained in:
		
							parent
							
								
									2f01046f77
								
							
						
					
					
						commit
						66846836bc
					
				
					 1 changed files with 4 additions and 3 deletions
				
			
		|  | @ -17,11 +17,12 @@ | ||||||
| // enough for our purposes.
 | // enough for our purposes.
 | ||||||
| template <typename Fn> | template <typename Fn> | ||||||
| #if defined(_MSC_VER) | #if defined(_MSC_VER) | ||||||
| __declspec(noinline, noreturn) | [[msvc::noinline, noreturn]] | ||||||
| #elif defined(__GNUC__) | #elif defined(__GNUC__) | ||||||
|     __attribute__((noinline, noreturn, cold)) | [[gnu::cold, gnu::noinline, noreturn]] | ||||||
| #endif | #endif | ||||||
|     static void assert_noinline_call(const Fn& fn) { | static void | ||||||
|  | assert_noinline_call(const Fn& fn) { | ||||||
|     fn(); |     fn(); | ||||||
|     Crash(); |     Crash(); | ||||||
|     exit(1); // Keeps GCC's mouth shut about this actually returning
 |     exit(1); // Keeps GCC's mouth shut about this actually returning
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue