Browse Source

Update include/SDL3/SDL_assert.h

Co-authored-by: Sam Lantinga <[email protected]>
Timothee "TTimo" Besset 5 months ago
parent
commit
2a1b617fb2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/SDL3/SDL_assert.h

+ 1 - 1
include/SDL3/SDL_assert.h

@@ -150,7 +150,7 @@ extern "C" {
 #elif defined(_WIN32) && ((defined(__GNUC__) || defined(__clang__)) && (defined(__arm64__) || defined(__aarch64__)) )
     #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "brk #0xF000\n\t" )
 #elif defined(SDL_PLATFORM_LINUX) && ((defined(__GNUC__) || defined(__clang__)) && (defined(__arm64__) || defined(__aarch64__)) )
-    #define SDL_TriggerBreakpoint() __builtin_trap()  /* older arm linux environments may miss the SDL_HAS_BUILTIN(__builtin_trap) above */
+    #define SDL_TriggerBreakpoint() __builtin_trap()  /* older gcc may not support SDL_HAS_BUILTIN(__builtin_trap) above */
 #elif defined(__386__) && defined(__WATCOMC__)
     #define SDL_TriggerBreakpoint() { _asm { int 0x03 } }
 #elif defined(HAVE_SIGNAL_H) && !defined(__WATCOMC__)