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
[PATCH 7/57][Arm][GAS] Add support for MVE instructions: vstr/vldr
[binutils-gdb.git]
/
gdb
/
testsuite
/
gdb.base
/
mips_pro.c
blob
2c258a83dfd5b0525d417c280291c99ba8a731fb
1
/* Tests regarding examination of prologues. */
2
3
int
4
inner
(
int
z
)
5
{
6
return
2
*
z
;
7
}
8
9
int
10
middle
(
int
x
)
11
{
12
if
(
x
==
0
)
13
return
inner
(
5
);
14
else
15
return
inner
(
6
);
16
}
17
18
int
19
top
(
int
y
)
20
{
21
return
middle
(
y
+
1
);
22
}
23
24
int
25
main
(
int
argc
,
char
**
argv
)
26
{
27
return
top
(-
1
) +
top
(
1
);
28
}