Sign in
android
/
platform
/
system
/
extras
/
b922933eb10c4151d7b3fbec47bb53412bfaa647
/
.
/
simpleperf
/
runtest
/
one_function.cpp
blob: 561bb5a5b2f5c01ee60707cac1396aa0646aabaf [
file
] [
log
] [
blame
]
constexpr
int
LOOP_COUNT
=
100000000
;
void
Function1
()
{
for
(
volatile
int
i
=
0
;
i
<
LOOP_COUNT
;
++
i
)
{
}
}
int
main
()
{
while
(
true
)
{
Function1
();
}
return
0
;
}