repo.or.cz
/
valgrind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
drd/drd_pthread_intercepts: Add a workaround for what is probably a compiler bug
[valgrind.git]
/
VEX
/
switchback
/
test_simple.c
blob
9a7756a031636cddb697a10d0ae578acf1ee213d
1
2
3
static void
bar
(
void
*(*
service
)(
int
,
int
) )
4
{
5
__asm__
__volatile__
(
"addi 17, 14, 5"
);
6
}
7
8
void
entry
(
void
*(*
service
)(
int
,
int
) )
9
{
10
bar
(
service
);
11
service
(
0
,
0
);
12
}