Displaying 1 result from an estimated 1 matches for "set_debug_trap".
Did you mean:
set_debug_traps
2012 Feb 16
2
[LLVMdev] difference in function prologue generated with clang and gcc
...rom all-types.c compiled with GCC.
00008448 <main>:
float v_float;
double v_double;
int main ()
{
8448: e92d4800 push {fp, lr}
844c: e28db004 add fp, sp, #4
extern void dummy();
#ifdef usestubs
set_debug_traps();
breakpoint();
#endif
dummy();
8450: eb000002 bl 8460 <dummy>
return 0;
8454: e3a03000 mov r3, #0
}
8458: e1a00003 mov r0, r3
845c: e8bd8800 pop {fp, pc}
0000846...