Use _SDL_HAS_BUILTIN() instead of __has_builtin

main
Sam Lantinga 2022-05-21 09:58:39 -07:00
parent f4fc4719a5
commit 626a3c5ef7
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ assert can have unique static variables associated with it.
/* Don't include intrin.h here because it contains C++ code */
extern void __cdecl __debugbreak(void);
#define SDL_TriggerBreakpoint() __debugbreak()
#elif defined(__has_builtin) && __has_builtin(__builtin_debugtrap)
#elif _SDL_HAS_BUILTIN(__builtin_debugtrap)
#define SDL_TriggerBreakpoint() __builtin_debugtrap()
#elif ( (!defined(__NACL__)) && ((defined(__GNUC__) || defined(__clang__)) && (defined(__i386__) || defined(__x86_64__))) )
#define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "int $3\n\t" )