mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 12:03:41 +08:00
d8679d841d
when a reload caused by a change in an executable invalidates a breakpoint condition.
23 lines
295 B
C
23 lines
295 B
C
/*
|
|
* 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);
|
|
}
|
|
|