You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
180 B

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