URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gdb-6.8/] [gdb/] [testsuite/] [gdb.base/] [return.c] - Rev 157
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; }