* config/tc-arm.c (arm_cpus): Add entry for ARM Cortex-M0.
[binutils-gdb.git] / gdb / testsuite / gdb.base / reread1.c
blobae9801047d4ad55aa9a8b8cb7f25fa4dbd0d4c34
1 /* pr 13484 */
3 #include <stdio.h>
5 int x;
7 void bar()
9 x--;
12 void foo()
14 x++;
17 int main()
19 #ifdef usestubs
20 set_debug_traps ();
21 breakpoint ();
22 #endif
23 foo();
24 bar();
25 return 0;