mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
2001-07-25 Michael Snyder <msnyder@redhat.com>
* gdb.base/consecutive.exp: New file. Test stepping over breakpoints on consecutive instructions. * gdb.base/consecutive.c: New file.
This commit is contained in:
20
gdb/testsuite/gdb.base/consecutive.c
Normal file
20
gdb/testsuite/gdb.base/consecutive.c
Normal file
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
Purpose of this test: to test breakpoints on consecutive instructions.
|
||||
*/
|
||||
|
||||
int a[7] = {1, 2, 3, 4, 5, 6, 7};
|
||||
|
||||
/* assert: first line of foo has more than one instruction. */
|
||||
int foo ()
|
||||
{
|
||||
return a[0] + a[1] + a[2] + a[3] + a[4] + a[5] + a[6];
|
||||
}
|
||||
|
||||
main()
|
||||
{
|
||||
#ifdef usestubs
|
||||
set_debug_traps ();
|
||||
breakpoint ();
|
||||
#endif
|
||||
foo ();
|
||||
}
|
||||
Reference in New Issue
Block a user