Files
binutils-gdb/gdb/testsuite/gdb.base/chng-syms.c
Tom de Vries 45311dce11 [gdb/testsuite] Fix whitespace issues
This is the result of:
...
$ git rm -rf gdb/testsuite
$ git commit -a -m tmp
$ git revert HEAD
$ git rebase --whitespace=fix HEAD^
...

Tested on x86_64-linux.

PR build/33616
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=33616
2025-11-23 12:55:16 +01:00

22 lines
292 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);
}