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
/
pc-fp.c
blob
8c89a0f0b81ac392e5cfeec4d25dfcb0ebed96dc
1
#include <stdio.h>
2
3
void
4
foo
(
int
i
)
5
{
6
i
++;
7
printf
(
"In foo %d
\n
"
,
i
);
8
}
9
10
int
11
main
()
12
{
13
foo
(
1
);
14
}