diff options
author | Sergey Matyukevich <[email protected]> | 2013-02-22 11:00:31 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2013-02-22 16:19:58 +0000 |
commit | 21e8af0b09e57445f2ef43b83760b7ed0d37eca5 (patch) | |
tree | 567ce87e886fe4e7f275d1a4a2ad150da13437c2 /src/gallium | |
parent | f6b40ddd2d92fd82ccf7ce695d4ed026ef7cfd11 (diff) |
util/debug: Always use __builtin_frame_address on gcc.
Should workaround fdo bug 57563.
Signed-off-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/util/u_debug_stack.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/util/u_debug_stack.c b/src/gallium/auxiliary/util/u_debug_stack.c index 558b911f2dd..50a248a979f 100644 --- a/src/gallium/auxiliary/util/u_debug_stack.c +++ b/src/gallium/auxiliary/util/u_debug_stack.c @@ -48,10 +48,7 @@ debug_backtrace_capture(struct debug_stack_frame *backtrace, if(!nr_frames) return; -#if defined(PIPE_CC_GCC) && defined(PIPE_ARCH_X86) - __asm__ __volatile__("mov (%%ebp),%0": "=r" (frame_pointer)); - frame_pointer = (const void **)frame_pointer[0]; -#elif defined(PIPE_CC_GCC) +#if defined(PIPE_CC_GCC) frame_pointer = ((const void **)__builtin_frame_address(1)); #elif defined(PIPE_CC_MSVC) && defined(PIPE_ARCH_X86) __asm { |