diff options
author | José Fonseca <[email protected]> | 2009-03-25 20:58:38 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-03-25 21:01:49 +0000 |
commit | 8c4bd92b68cf79ff94dc431f78a970bbab7e0d00 (patch) | |
tree | 3173686f22623f9a259c28c4fce9de405de41cf6 /src/gallium/auxiliary/util/u_debug.h | |
parent | 079be0fd3f1d0f52f26a95756809ac4a2325ccb1 (diff) |
util: Don't use x86 asm on x86_64.
Diffstat (limited to 'src/gallium/auxiliary/util/u_debug.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_debug.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/gallium/auxiliary/util/u_debug.h b/src/gallium/auxiliary/util/u_debug.h index 33e7cb3419e..5e88f3ebb1a 100644 --- a/src/gallium/auxiliary/util/u_debug.h +++ b/src/gallium/auxiliary/util/u_debug.h @@ -125,19 +125,16 @@ void debug_print_format(const char *msg, unsigned fmt ); #endif -void _debug_break(void); - - /** * Hard-coded breakpoint. */ #ifdef DEBUG #if defined(PIPE_ARCH_X86) && defined(PIPE_CC_GCC) #define debug_break() __asm("int3") -#elif defined(PIPE_ARCH_X86) && defined(PIPE_CC_MSVC) -#define debug_break() do { _asm {int 3} } while(0) +#elif defined(PIPE_CC_MSVC) +#define debug_break() __debugbreak() #else -#define debug_break() _debug_break() +void debug_break(void); #endif #else /* !DEBUG */ #define debug_break() ((void)0) |