URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [insight/] [gdb/] [testsuite/] [gdb.base/] [return.c] - Rev 1767
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> /* Test "return" command. */ void func1 () { printf("in func1\n"); } int func2 () { return -5; } double func3 () { return -5.0; } int tmp2; double tmp3; int main () { #ifdef usestubs set_debug_traps(); breakpoint(); #endif func1 (); printf("in main after func1\n"); tmp2 = func2 (); tmp3 = func3 (); printf("exiting\n"); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log