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
memcheck: on arm64, use expensive instrumentation for Cmp{EQ,NE}64 by default.
[valgrind.git]
/
memcheck
/
tests
/
supp.c
blob
fe1200e3f77b30df14dbfd81d3d0c1bb195b4072
1
#include <stdlib.h>
2
3
int
4
main
()
5
{
6
volatile
int
x
;
/* make sure it isn't in a register */
7
8
if
(
x
==
0
)
9
return
0
;
10
else
11
return
1
;
12
}