android13/system/extras/simpleperf/runtest/one_function.cpp

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;
}