repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix C++ template function matching in cooked index
[binutils-gdb.git]
/
gdb
/
testsuite
/
gdb.base
/
consecutive.c
blob
869a88c911f5e4c0df780a91adb6190fe9ce9390
1
/*
2
Purpose of this test: to test breakpoints on consecutive instructions.
3
*/
4
5
int
a
[
7
] = {
1
,
2
,
3
,
4
,
5
,
6
,
7
};
6
7
/* assert: first line of foo has more than one instruction. */
8
int
foo
()
9
{
10
return
a
[
0
] +
a
[
1
] +
a
[
2
] +
a
[
3
] +
a
[
4
] +
a
[
5
] +
a
[
6
];
11
}
12
13
int
14
main
()
15
{
16
foo
();
17
return
0
;
18
}