URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gdb-6.8/] [gdb/] [testsuite/] [gdb.base/] [chng-syms.c] - Rev 853
Go to most recent revision | Compare with Previous | Blame | View Log
/* * Test that GDB cleans up properly after errors that result when a * breakpoint is reset. */ /* VARIABLE is a macro defined on the compiler command line. */ #include <stdlib.h> int VARIABLE = 42; void stop_here () { VARIABLE *= 2; } int main () { stop_here (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log