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
* config/tc-arm.c (arm_cpus): Add entry for ARM Cortex-M0.
[binutils-gdb.git]
/
gdb
/
testsuite
/
gdb.base
/
shr2.c
blob
de34986d76d57ac433b04f7995ad46cf114de104
1
#ifdef PROTOTYPES
2
int
shr2
(
int
x
)
3
#else
4
int
shr2
(
x
)
int
x
;
5
#endif
6
{
7
return
2
*
x
;
8
}
9
10
#ifdef PROTOTYPES
11
int
shr2_local
(
int
x
)
12
#else
13
int
shr2_local
(
x
)
int
x
;
14
#endif
15
{
16
return
2
*
x
;
17
}