Skip to content
Snippets Groups Projects
Commit 6e0a4f15 authored by Michael Snyder's avatar Michael Snyder
Browse files

2009-07-14 Michael Snyder <msnyder@vmware.com>

	* gdb.arch/i386-signal.c (sigframe): Add a nop to avoid
	confusing the i386 epilogue unwinder.
parent 5c0b6198
No related branches found
No related tags found
No related merge requests found
2009-07-14 Michael Snyder <msnyder@vmware.com>
* gdb.arch/i386-signal.c (sigframe): Add a nop to avoid
confusing the i386 epilogue unwinder.
2009-07-14 Stan Shebs <stan@codesourcery.com>
 
* gdb.trace/tracecmd.exp: Add basic test of tracepoint conditions.
......
......@@ -37,6 +37,10 @@ main (void)
The default CIE created by gas suffices to unwind from an empty
function. */
/* Note: to make sure that the Dwarf unwinder gets to handle
the frame, we add an extra 'nop' after the label. Otherwise,
the epilogue unwinder will see the 'ret' and grab the frame. */
asm(".text\n"
" .align 8\n"
" .globl setup\n"
......@@ -49,5 +53,6 @@ asm(".text\n"
" nop\n"
" .globl sigframe\n"
"sigframe:\n"
" nop\n"
" ret\n"
" .cfi_endproc");
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment