aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/consecutive.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.base/consecutive.c')
-rw-r--r--gdb/testsuite/gdb.base/consecutive.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/gdb/testsuite/gdb.base/consecutive.c b/gdb/testsuite/gdb.base/consecutive.c
deleted file mode 100644
index bfea429..0000000
--- a/gdb/testsuite/gdb.base/consecutive.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- 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 ();
-}