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
Add missing zstd.h to coregrind Makefile.am noinst_HEADERS
[valgrind.git]
/
memcheck
/
tests
/
x86
/
pushfpopf_c.c
blob
f45271e0ff67cc56925a2282d2f5ce28a047e970
1
2
#include <stdio.h>
3
4
// in pushfpopf.s
5
extern
int
fooble
(
int
,
int
);
6
7
int
main
(
void
)
8
{
9
int
arr
[
2
];
10
arr
[
0
] =
3
;
11
// arr[1] = 45;
12
printf
(
"fooble: result is %d
\n
"
,
fooble
(
arr
[
0
],
arr
[
1
]));
13
return
0
;
14
}