Files
Android11/system/extras/simpleperf/runtest/one_function.cpp
2023-10-13 14:01:41 +00:00

14 lines
180 B
C++

constexpr int LOOP_COUNT = 100000000;
void Function1() {
for (volatile int i = 0; i < LOOP_COUNT; ++i) {
}
}
int main() {
while (true) {
Function1();
}
return 0;
}