* gdb.base/reread.exp: New file.

* gdb.base/reread1.c: New file.
	* gdb.base/reread2.c: New file.
This commit is contained in:
Mark Alexander
1998-05-17 06:49:55 +00:00
parent 7ec482ba5d
commit 7ee554b50e
5 changed files with 171 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
/* pr 13484 */
#include <stdio.h>
int x;
void bar()
{
x--;
}
void foo()
{
x++;
}
int main()
{
#ifdef usestubs
set_debug_traps ();
breakpoint ();
#endif
foo();
bar();
return 0;
}