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
/
skip-solib-lib.c
blob
b2c4d86d7039a39c434df9e7e923ff982623b087
1
/* Simple shared library */
2
3
int
multiply
(
int
a
,
int
b
)
4
{
5
return
a
*
b
;
6
}
7
8
int
square
(
int
num
)
9
{
10
return
multiply
(
num
,
num
);
11
}